Skip to content

Commit a91382f

Browse files
authored
Merge pull request #494 from JuliaPhysics/downgrade
Reactivate Downgrade tests on `1` and `pre`
2 parents d725f97 + cba001e commit a91382f

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/Downgrade.yml

Lines changed: 10 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,17 @@ 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'
37+
with:
38+
skip: Pkg,TOML,Distributions,FillArrays,StaticArrays
39+
- uses: julia-actions/julia-downgrade-compat@v1
40+
if: matrix.version == 'pre'
41+
with:
42+
skip: Pkg,TOML,Distributions,FillArrays,StaticArrays,Unitful
3443
- uses: julia-actions/julia-buildpkg@v1
3544
- uses: julia-actions/julia-runtest@v1
3645
with:

0 commit comments

Comments
 (0)