File tree Expand file tree Collapse file tree 1 file changed +12
-19
lines changed Expand file tree Collapse file tree 1 file changed +12
-19
lines changed Original file line number Diff line number Diff line change @@ -2,42 +2,35 @@ name: Downgrade
2
2
on :
3
3
pull_request :
4
4
branches :
5
- - main
5
+ - master
6
6
paths-ignore :
7
7
- ' docs/**'
8
8
push :
9
9
branches :
10
- - main
10
+ - master
11
11
paths-ignore :
12
12
- ' docs/**'
13
- schedule :
14
- - cron : ' 44 4 * * 4'
15
13
jobs :
16
14
test :
17
- runs-on : ${{ matrix.os }}
18
- env :
19
- GROUP : ${{ matrix.group }}
15
+ runs-on : ubuntu-latest
20
16
strategy :
21
- fail-fast : false
22
17
matrix :
23
18
group :
24
19
- 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']
31
22
steps :
32
23
- uses : actions/checkout@v4
33
24
- uses : julia-actions/setup-julia@v2
34
25
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' }}
37
29
with :
38
30
skip : Pkg,TOML
39
- - uses : julia-actions/cache@v2
40
- with :
41
- token : ${{ secrets.GITHUB_TOKEN }}
42
31
- uses : julia-actions/julia-buildpkg@v1
43
32
- uses : julia-actions/julia-runtest@v1
33
+ with :
34
+ ALLOW_RERESOLVE : false
35
+ env :
36
+ GROUP : ${{ matrix.group }}
You can’t perform that action at this time.
0 commit comments