File tree Expand file tree Collapse file tree 2 files changed +32
-4
lines changed Expand file tree Collapse file tree 2 files changed +32
-4
lines changed Original file line number Diff line number Diff line change
1
+ name : Downgrade
2
+ on :
3
+ pull_request :
4
+ branches :
5
+ - master
6
+ paths-ignore :
7
+ - ' docs/**'
8
+ push :
9
+ branches :
10
+ - master
11
+ paths-ignore :
12
+ - ' docs/**'
13
+ jobs :
14
+ test :
15
+ runs-on : ubuntu-latest
16
+ strategy :
17
+ matrix :
18
+ version : ['1.6', '1']
19
+ steps :
20
+ - uses : actions/checkout@v4
21
+ - uses : julia-actions/setup-julia@v1
22
+ with :
23
+ version : ${{ matrix.version }}
24
+ - uses : julia-actions/julia-downgrade-compat@v1
25
+ with :
26
+ skip : Pkg,TOML
27
+ - uses : julia-actions/julia-buildpkg@v1
28
+ - uses : julia-actions/julia-runtest@v1
Original file line number Diff line number Diff line change @@ -29,16 +29,16 @@ ChainRulesCore = "1"
29
29
ChainRulesTestUtils = " 1"
30
30
DualNumbers = " 0.6"
31
31
FFTW = " 1"
32
- LinearAlgebra = " 1.6 "
32
+ LinearAlgebra = " <0.0.1, 1 "
33
33
MakieCore = " 0.6,0.7, 0.8"
34
34
MutableArithmetics = " 1"
35
35
OffsetArrays = " 1"
36
36
RecipesBase = " 0.7, 0.8, 1"
37
- Requires = " 1.0 "
37
+ Requires = " 1.1 "
38
38
Setfield = " 1"
39
- SparseArrays = " 1.6 "
39
+ SparseArrays = " <0.0.1, 1 "
40
40
SpecialFunctions = " 1,2"
41
- Test = " 1.6 "
41
+ Test = " <0.0.1, 1 "
42
42
julia = " 1.6"
43
43
44
44
[extras ]
You can’t perform that action at this time.
0 commit comments