Skip to content

Commit 2cfa8d2

Browse files
Update Downgrade.yml
1 parent 74e61a9 commit 2cfa8d2

File tree

1 file changed

+11
-16
lines changed

1 file changed

+11
-16
lines changed

.github/workflows/Downgrade.yml

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -10,32 +10,27 @@ on:
1010
- master
1111
paths-ignore:
1212
- 'docs/**'
13-
schedule:
14-
- cron: '33 1 * * 4'
1513
jobs:
1614
test:
17-
runs-on: ${{ matrix.os }}
15+
runs-on: ubuntu-latest
1816
strategy:
19-
fail-fast: false
2017
matrix:
2118
group:
2219
- Core
23-
version:
24-
- '1'
25-
os:
26-
- ubuntu-latest
27-
- macos-latest
28-
- windows-latest
20+
downgrade_mode: ['alldeps']
21+
julia-version: ['1.10']
2922
steps:
3023
- uses: actions/checkout@v4
3124
- uses: julia-actions/setup-julia@v2
3225
with:
33-
version: ${{ matrix.version }}
34-
- uses: julia-actions/julia-downgrade-compat@v1
26+
version: ${{ matrix.julia-version }}
27+
- uses: julia-actions/julia-downgrade-compat@v2
28+
# if: ${{ matrix.version == '1.6' }}
3529
with:
36-
skip: Pkg, TOML, Test, Random, LinearAlgebra, Statistics, SparseArrays
37-
- uses: julia-actions/cache@v2
38-
with:
39-
token: ${{ secrets.GITHUB_TOKEN }}
30+
skip: Pkg,TOML
4031
- uses: julia-actions/julia-buildpkg@v1
4132
- uses: julia-actions/julia-runtest@v1
33+
with:
34+
ALLOW_RERESOLVE: false
35+
env:
36+
GROUP: ${{ matrix.group }}

0 commit comments

Comments
 (0)