Skip to content

Commit c860b4b

Browse files
Merge pull request #110 from ErikQQY/qqy/downgrade_ci
Add downgrade CI
2 parents e42f3fe + ef11257 commit c860b4b

File tree

2 files changed

+42
-13
lines changed

2 files changed

+42
-13
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: Downgrade
2+
on:
3+
pull_request:
4+
branches:
5+
- main
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']
19+
steps:
20+
- uses: actions/checkout@v4
21+
- uses: julia-actions/setup-julia@v1
22+
with:
23+
version: ${{ matrix.version }}
24+
- uses: cjdoris/julia-downgrade-compat-action@v1
25+
# if: ${{ matrix.version == '1.6' }}
26+
with:
27+
skip: Pkg,TOML
28+
- uses: julia-actions/julia-buildpkg@v1
29+
- uses: julia-actions/julia-runtest@v1

lib/SimpleNonlinearSolve/Project.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -30,21 +30,21 @@ SimpleNonlinearSolveStaticArraysExt = "StaticArrays"
3030

3131
[compat]
3232
ADTypes = "0.2.6"
33-
ArrayInterface = "7"
34-
ChainRulesCore = "1"
35-
ConcreteStructs = "0.2"
36-
DiffEqBase = "6.126"
33+
ArrayInterface = "7.7"
34+
ChainRulesCore = "1.21"
35+
ConcreteStructs = "0.2.3"
36+
DiffEqBase = "6.146"
3737
FastClosures = "0.3"
38-
FiniteDiff = "2"
39-
ForwardDiff = "0.10.3"
40-
LinearAlgebra = "1.9"
41-
MaybeInplace = "0.1"
42-
PrecompileTools = "1"
43-
Reexport = "1"
38+
FiniteDiff = "2.22"
39+
ForwardDiff = "0.10.36"
40+
LinearAlgebra = "1.10"
41+
MaybeInplace = "0.1.1"
42+
PrecompileTools = "1.2"
43+
Reexport = "1.2"
4444
SciMLBase = "2.23"
45-
StaticArrays = "1"
46-
StaticArraysCore = "1.4"
47-
julia = "1.9"
45+
StaticArrays = "1.9"
46+
StaticArraysCore = "1.4.2"
47+
julia = "1.10"
4848

4949
[extras]
5050
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"

0 commit comments

Comments
 (0)