Skip to content

Commit a9b9d1c

Browse files
Update Downgrade.yml
1 parent 42cede9 commit a9b9d1c

File tree

1 file changed

+12
-19
lines changed

1 file changed

+12
-19
lines changed

.github/workflows/Downgrade.yml

Lines changed: 12 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -2,42 +2,35 @@ name: Downgrade
22
on:
33
pull_request:
44
branches:
5-
- main
5+
- master
66
paths-ignore:
77
- 'docs/**'
88
push:
99
branches:
10-
- main
10+
- master
1111
paths-ignore:
1212
- 'docs/**'
13-
schedule:
14-
- cron: '44 4 * * 4'
1513
jobs:
1614
test:
17-
runs-on: ${{ matrix.os }}
18-
env:
19-
GROUP: ${{ matrix.group }}
15+
runs-on: ubuntu-latest
2016
strategy:
21-
fail-fast: false
2217
matrix:
2318
group:
2419
- Core
25-
version:
26-
- '1.10'
27-
os:
28-
- ubuntu-latest
29-
- macos-latest
30-
- windows-latest
20+
downgrade_mode: ['alldeps']
21+
julia-version: ['1.10']
3122
steps:
3223
- uses: actions/checkout@v4
3324
- uses: julia-actions/setup-julia@v2
3425
with:
35-
version: ${{ matrix.version }}
36-
- 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' }}
3729
with:
3830
skip: Pkg,TOML
39-
- uses: julia-actions/cache@v2
40-
with:
41-
token: ${{ secrets.GITHUB_TOKEN }}
4231
- uses: julia-actions/julia-buildpkg@v1
4332
- uses: julia-actions/julia-runtest@v1
33+
with:
34+
ALLOW_RERESOLVE: false
35+
env:
36+
GROUP: ${{ matrix.group }}

0 commit comments

Comments
 (0)