Skip to content

Commit

Permalink
Bring back a conditional test
Browse files Browse the repository at this point in the history
  • Loading branch information
lbenet committed Dec 5, 2023
1 parent 153ca46 commit 4728ef6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:

jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.julia-threads }} thread(s) - ${{ github.event_name }}
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.julia-threads }} thread(s) - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
if: "!contains(github.event.head_commit.message, 'skip ci')"
env:
Expand Down
4 changes: 3 additions & 1 deletion test/aqua.jl
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ using Aqua
for method_ambiguity in ambs
@show method_ambiguity
end
@test length(ambs) == 0
if VERSION < v"1.10.0-DEV"
@test length(ambs) == 0
end
end

@testset "Aqua tests (additional)" begin
Expand Down

0 comments on commit 4728ef6

Please sign in to comment.