We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ac0815 commit c2006a6Copy full SHA for c2006a6
.github/workflows/Downgrade.yml
@@ -0,0 +1,36 @@
1
+name: Downgrade
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - master
6
+ paths-ignore:
7
+ - 'docs/**'
8
+ - 'benchmark/**'
9
+ push:
10
11
12
13
14
15
+jobs:
16
+ test:
17
+ runs-on: ubuntu-latest
18
+ strategy:
19
+ matrix:
20
+ downgrade_mode: ['alldeps']
21
+ julia-version: ['1.10']
22
+ group: ['Core']
23
+ steps:
24
+ - uses: actions/checkout@v4
25
+ - uses: julia-actions/setup-julia@v2
26
+ with:
27
+ version: ${{ matrix.julia-version }}
28
+ - uses: julia-actions/julia-downgrade-compat@v2
29
30
+ skip: Pkg,TOML
31
+ - uses: julia-actions/julia-buildpkg@v1
32
+ - uses: julia-actions/julia-runtest@v1
33
34
+ ALLOW_RERESOLVE: false
35
+ env:
36
+ GROUP: ${{ matrix.group }}
0 commit comments