Skip to content

Commit f28ca7e

Browse files
Update Downgrade.yml
1 parent b42cd1c commit f28ca7e

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

.github/workflows/Downgrade.yml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +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/**'
1313
jobs:
1414
test:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
version: ['min']
1918
group:
2019
- Core
21-
- Enzyme
20+
downgrade_mode: ['alldeps']
21+
julia-version: ['1.10']
2222
steps:
2323
- uses: actions/checkout@v4
2424
- uses: julia-actions/setup-julia@v2
2525
with:
26-
version: ${{ matrix.version }}
27-
- uses: julia-actions/julia-downgrade-compat@v1
26+
version: ${{ matrix.julia-version }}
27+
- uses: julia-actions/julia-downgrade-compat@v2
2828
# if: ${{ matrix.version == '1.6' }}
2929
with:
3030
skip: Pkg,TOML
3131
- uses: julia-actions/julia-buildpkg@v1
3232
- uses: julia-actions/julia-runtest@v1
33+
with:
34+
ALLOW_RERESOLVE: false
35+
env:
36+
GROUP: ${{ matrix.group }}

0 commit comments

Comments
 (0)