From cba001eedec0359517e3d0f23654b16ef7795c0e Mon Sep 17 00:00:00 2001 From: Felix Hagemann Date: Sun, 25 May 2025 12:23:29 +0200 Subject: [PATCH] Reactivate Downgrade tests on `1` and `pre` while excluding packages that are not compatible with `1` and `pre` --- .github/workflows/Downgrade.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/Downgrade.yml b/.github/workflows/Downgrade.yml index 53abc0e4b..4a3452a54 100644 --- a/.github/workflows/Downgrade.yml +++ b/.github/workflows/Downgrade.yml @@ -19,7 +19,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - version: ['1.10'] + version: ['1.10', '1', 'pre'] steps: - uses: actions/checkout@v4 - uses: julia-actions/setup-julia@v2 @@ -29,8 +29,17 @@ jobs: run: julia -e 'using Pkg; Pkg.Registry.add("General"); Pkg.Registry.add(Pkg.RegistrySpec(url = "https://github.com/legend-exp/LegendJuliaRegistry"))' shell: bash - uses: julia-actions/julia-downgrade-compat@v1 + if: matrix.version == '1.10' with: skip: Pkg,TOML + - uses: julia-actions/julia-downgrade-compat@v1 + if: matrix.version == '1' + with: + skip: Pkg,TOML,Distributions,FillArrays,StaticArrays + - uses: julia-actions/julia-downgrade-compat@v1 + if: matrix.version == 'pre' + with: + skip: Pkg,TOML,Distributions,FillArrays,StaticArrays,Unitful - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 with: