Skip to content

Commit

Permalink
Fix compat (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
gdalle authored Feb 5, 2024
1 parent 59dde8b commit c84e100
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,13 @@ jobs:
fail-fast: false
matrix:
version:
- '1.6'
- '1'
- 'nightly'
os:
- ubuntu-latest
arch:
- x64
include:
- version: '1.6'
allow_failure: false
- version: '1'
allow_failure: false
- version: 'nightly'
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ authors = ["JuliaGraphs contributors"]
version = "0.1.0-DEV"

[compat]
julia = "1.6"
julia = "1.10"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down
10 changes: 3 additions & 7 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,14 @@ DocMeta.setdocmeta!(GraphsBase, :DocTestSetup, :(using GraphsBase); recursive=tr

@testset verbose = true "GraphsBase.jl" begin
@testset "Code quality (Aqua.jl)" begin
Aqua.test_all(GraphsBase)
Aqua.test_all(GraphsBase; deps_compat=(; check_extras=false,))
end
@testset "Formatting (JuliaFormatter.jl)" begin
@test format(GraphsBase; verbose=false, overwrite=false)
end
@testset "Doctests (Documenter.jl)" begin
doctest(GraphsBase)
end
doctest(GraphsBase)
@testset "Static checking (JET.jl)" begin
if VERSION >= v"1.9"
JET.test_package(GraphsBase; target_modules=(GraphsBase,))
end
JET.test_package(GraphsBase; target_modules=(GraphsBase,))
end
# Put the actual tests here
end

0 comments on commit c84e100

Please sign in to comment.