Skip to content

Commit 34f63bb

Browse files
Update Downgrade.yml
1 parent 49bab03 commit 34f63bb

File tree

1 file changed

+10
-15
lines changed

1 file changed

+10
-15
lines changed

.github/workflows/Downgrade.yml

Lines changed: 10 additions & 15 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: '51 14 * * 6'
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:
3630
skip: Pkg,TOML
37-
- uses: julia-actions/cache@v2
38-
with:
39-
token: ${{ secrets.GITHUB_TOKEN }}
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)