Skip to content

Commit

Permalink
Merge branch 'main' into mp/expose-port
Browse files Browse the repository at this point in the history
  • Loading branch information
mortenpi authored Jun 24, 2024
2 parents e3e2467 + 5551e30 commit 7b6e9d9
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,16 +73,14 @@ jobs:
- uses: julia-actions/setup-julia@v1
with:
version: "1"
- run: |
- name: "Aqua.test_all(JuliaHub)"
shell: julia --color=yes {0}
run: |
import Pkg
Pkg.activate(temp=true)
Pkg.add(name="Aqua", version="0.6")
Pkg.add(name="Aqua", version="0.8")
Pkg.develop(path=".")
import Aqua, JuliaHub
Aqua.test_all(JuliaHub)
shell: julia --color=yes {0}
name: "Aqua.test_all(JuliaHub)"
continue-on-error: true
include(joinpath(pwd(), "test", "aqua.jl"))
jet:
name: JET
Expand Down
20 changes: 20 additions & 0 deletions test/aqua.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import Aqua
import JuliaHub
using Test

@testset "Aqua" begin
Aqua.test_all(
JuliaHub;
# These ambiguities are introduced by InlineStrings
# https://github.com/JuliaStrings/InlineStrings.jl/issues/71
ambiguities=(;
exclude=[
Base.Sort.defalg
],
),
# Aqua detects missing standard library compat entries, but setting these
# is problematic if we want to support 1.6
# https://discourse.julialang.org/t/psa-compat-requirements-in-the-general-registry-are-changing/104958
deps_compat=(; broken=true, check_extras=false),
)
end

0 comments on commit 7b6e9d9

Please sign in to comment.