File tree Expand file tree Collapse file tree 3 files changed +23
-5
lines changed
Expand file tree Collapse file tree 3 files changed +23
-5
lines changed Original file line number Diff line number Diff line change @@ -29,14 +29,14 @@ jobs:
2929 - " pre" # Pre-release/nightly
3030 os :
3131 - ubuntu-latest
32- - macOS-13 # Intel
32+ - macOS-26-intel # Intel
3333 - windows-latest
3434 arch :
3535 - x64
3636 - x86
3737 exclude :
3838 # Test 32-bit only on Linux
39- - os : macOS-13
39+ - os : macOS-26-intel
4040 arch : x86
4141 - os : windows-latest
4242 arch : x86
5050 with :
5151 version : ${{ matrix.version }}
5252 arch : ${{ matrix.arch }}
53- - uses : julia-actions/cache@v2
53+ - uses : julia-actions/cache@v3
5454 - uses : julia-actions/julia-buildpkg@v1
55+ - run : |
56+ julia --project -e '
57+ using Pkg
58+ Pkg.add([PackageSpec(; url="https://github.com/JamesWrigley/StaticArrays.jl.git", rev="compat"),
59+ PackageSpec(; url="https://github.com/JamesWrigley/FiniteDifferences.jl.git", rev="compat")])
60+ '
5561 - uses : julia-actions/julia-runtest@v1
5662 - uses : julia-actions/julia-processcoverage@v1
5763 - uses : codecov/codecov-action@v5
Original file line number Diff line number Diff line change 2828# if: ${{ matrix.version == '1.6' }}
2929 with :
3030 skip : Pkg,TOML
31+ - run : |
32+ julia --project -e '
33+ using Pkg
34+ Pkg.add([PackageSpec(; url="https://github.com/JamesWrigley/StaticArrays.jl.git", rev="compat"),
35+ PackageSpec(; url="https://github.com/JamesWrigley/FiniteDifferences.jl.git", rev="compat")])
36+ '
3137 - uses : julia-actions/julia-buildpkg@v1
3238 - uses : julia-actions/julia-runtest@v1
3339 with :
Original file line number Diff line number Diff line change @@ -27,12 +27,18 @@ jobs:
2727 - uses : julia-actions/setup-julia@v2
2828 with :
2929 version : nightly
30- - uses : julia-actions/cache@v2
30+ - uses : julia-actions/cache@v3
3131 - uses : julia-actions/julia-buildpkg@v1
32+ - run : |
33+ julia --project -e '
34+ using Pkg
35+ Pkg.add([PackageSpec(; url="https://github.com/JamesWrigley/StaticArrays.jl.git", rev="compat"),
36+ PackageSpec(; url="https://github.com/JamesWrigley/FiniteDifferences.jl.git", rev="compat")])
37+ '
3238 - uses : julia-actions/julia-runtest@v1
3339 - uses : julia-actions/julia-processcoverage@v1
3440 - uses : codecov/codecov-action@v5
3541 with :
3642 files : lcov.info
3743 token : ${{ secrets.CODECOV_TOKEN }}
38- fail_ci_if_error : true
44+ fail_ci_if_error : true
You can’t perform that action at this time.
0 commit comments