Skip to content

Commit efa0f7c

Browse files
committed
Reactivate Downgrade tests on 1 and pre
while excluding packages that are not compatible with `1` and `pre`
1 parent d725f97 commit efa0f7c

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/Downgrade.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
version: ['1.10']
22+
version: ['1.10', '1', 'pre']
2323
steps:
2424
- uses: actions/checkout@v4
2525
- uses: julia-actions/setup-julia@v2
@@ -29,8 +29,13 @@ jobs:
2929
run: julia -e 'using Pkg; Pkg.Registry.add("General"); Pkg.Registry.add(Pkg.RegistrySpec(url = "https://github.com/legend-exp/LegendJuliaRegistry"))'
3030
shell: bash
3131
- uses: julia-actions/julia-downgrade-compat@v1
32+
if: matrix.version == '1.10'
3233
with:
3334
skip: Pkg,TOML
35+
- uses: julia-actions/julia-downgrade-compat@v1
36+
if: matrix.version != '1.10'
37+
with:
38+
skip: Pkg,TOML,FillArrays,Distributions,StaticArrays
3439
- uses: julia-actions/julia-buildpkg@v1
3540
- uses: julia-actions/julia-runtest@v1
3641
with:

0 commit comments

Comments
 (0)