Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .github/workflows/ci_unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,25 +20,28 @@ jobs:
strategy:
fail-fast: false
matrix:
arch:
- x64
os:
- ubuntu-latest
version:
- '1.0' # min
- '1.1'
- '1.2'
- '1.3'
- '1.4'
- '1.5'
- '1.6'
- '1.6' # old LTS
- '1.7'
- '1.8'
- '1'
- '1.9'
- '1.10' # current LTS
- '1.11'
- '1.12' # current stable
- 'nightly'
steps:
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion RegistryCI/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ RegistryTools = "2.2"
SimpleMock = "1"
Test = "<0.0.1, 1"
TimeZones = "1"
julia = "1.3"
julia = "1"

[extras]
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
Expand Down
6 changes: 6 additions & 0 deletions RegistryCI/src/registry_testing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ end

is_valid_url(str::AbstractString) = !isempty(HTTP.URI(str).scheme) && isvalid(HTTP.URI(str))

@static if Base.VERSION >= v"1.2" # Base.hasproperty() requires Julia 1.2+
const hasproperty = Base.hasproperty
else
hasproperty(x, s::Symbol) = s in propertynames(x)
end

function _include_this_registry(
registry_spec, registry_deps_names::Vector{<:AbstractString}
)
Expand Down
Loading