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 b966c7e + 3ef4f60 commit 10e7af5Copy full SHA for 10e7af5
.github/workflows/Downgrade.yml
@@ -0,0 +1,31 @@
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
+ steps:
21
+ - uses: actions/checkout@v4
22
+ - uses: julia-actions/setup-julia@v2
23
+ with:
24
+ version: ${{ matrix.julia-version }}
25
+ - uses: julia-actions/julia-downgrade-compat@v2
26
27
+ skip: Pkg,TOML
28
+ - uses: julia-actions/julia-buildpkg@v1
29
+ - uses: julia-actions/julia-runtest@v1
30
31
+ ALLOW_RERESOLVE: false
0 commit comments