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.
2 parents da16fa0 + bfb82aa commit 3a0df02Copy full SHA for 3a0df02
.github/workflows/Downgrade.yml
@@ -0,0 +1,34 @@
1
+name: Downgrade
2
+on:
3
+ pull_request:
4
+ branches:
5
+ - master
6
+ paths-ignore:
7
+ - 'docs/**'
8
+ push:
9
10
11
12
13
+jobs:
14
+ test:
15
+ runs-on: ubuntu-latest
16
+ strategy:
17
+ matrix:
18
+ downgrade_mode: ['alldeps']
19
+ julia-version: ['1.10']
20
+ group: ['Core']
21
+ steps:
22
+ - uses: actions/checkout@v4
23
+ - uses: julia-actions/setup-julia@v2
24
+ with:
25
+ version: ${{ matrix.julia-version }}
26
+ - uses: julia-actions/julia-downgrade-compat@v2
27
28
+ skip: Pkg,TOML
29
+ - uses: julia-actions/julia-buildpkg@v1
30
+ - uses: julia-actions/julia-runtest@v1
31
32
+ ALLOW_RERESOLVE: false
33
+ env:
34
+ GROUP: ${{ matrix.group }}
0 commit comments