Skip to content
Merged
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
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