File tree Expand file tree Collapse file tree 2 files changed +25
-7
lines changed Expand file tree Collapse file tree 2 files changed +25
-7
lines changed Original file line number Diff line number Diff line change @@ -73,16 +73,14 @@ jobs:
73
73
- uses : julia-actions/setup-julia@v1
74
74
with :
75
75
version : " 1"
76
- - run : |
76
+ - name : " Aqua.test_all(JuliaHub)"
77
+ shell : julia --color=yes {0}
78
+ run : |
77
79
import Pkg
78
80
Pkg.activate(temp=true)
79
- Pkg.add(name="Aqua", version="0.6 ")
81
+ Pkg.add(name="Aqua", version="0.8 ")
80
82
Pkg.develop(path=".")
81
- import Aqua, JuliaHub
82
- Aqua.test_all(JuliaHub)
83
- shell: julia --color=yes {0}
84
- name: "Aqua.test_all(JuliaHub)"
85
- continue-on-error: true
83
+ include(joinpath(pwd(), "test", "aqua.jl"))
86
84
87
85
jet :
88
86
name : JET
Original file line number Diff line number Diff line change
1
+ import Aqua
2
+ import JuliaHub
3
+ using Test
4
+
5
+ @testset " Aqua" begin
6
+ Aqua. test_all (
7
+ JuliaHub;
8
+ # These ambiguities are introduced by InlineStrings
9
+ # https://github.com/JuliaStrings/InlineStrings.jl/issues/71
10
+ ambiguities= (;
11
+ exclude= [
12
+ Base. Sort. defalg
13
+ ],
14
+ ),
15
+ # Aqua detects missing standard library compat entries, but setting these
16
+ # is problematic if we want to support 1.6
17
+ # https://discourse.julialang.org/t/psa-compat-requirements-in-the-general-registry-are-changing/104958
18
+ deps_compat= (; broken= true , check_extras= false ),
19
+ )
20
+ end
You can’t perform that action at this time.
0 commit comments