Skip to content

Commit 4b1a17d

Browse files
Update Downgrade.yml
1 parent cb592ce commit 4b1a17d

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/Downgrade.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,31 @@ 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/**'
1313
jobs:
1414
test:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
version: ['1']
18+
downgrade_mode: ['alldeps']
19+
julia-version: ['1.10']
1920
steps:
2021
- uses: actions/checkout@v4
2122
- uses: julia-actions/setup-julia@v2
2223
with:
23-
version: ${{ matrix.version }}
24-
- uses: julia-actions/julia-downgrade-compat@v1
24+
version: ${{ matrix.julia-version }}
25+
- uses: julia-actions/julia-downgrade-compat@v2
2526
# if: ${{ matrix.version == '1.6' }}
2627
with:
2728
skip: Pkg,TOML
2829
- uses: julia-actions/julia-buildpkg@v1
2930
- uses: julia-actions/julia-runtest@v1
31+
with:
32+
ALLOW_RERESOLVE: false

0 commit comments

Comments
 (0)