Skip to content

Commit 35f9794

Browse files
committed
Add downgrade CI for testing lower bounds
Signed-off-by: ErikQQY <[email protected]>
1 parent d7ef4af commit 35f9794

File tree

2 files changed

+40
-11
lines changed

2 files changed

+40
-11
lines changed

.github/workflows/Downgrade.yml

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+
- 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']
19+
steps:
20+
- uses: actions/checkout@v3
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

Project.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ NonlinearSolveZygoteExt = "Zygote"
4848
[compat]
4949
ADTypes = "0.2"
5050
Aqua = "0.8"
51-
ArrayInterface = "6.0.24, 7"
52-
BandedMatrices = "1"
51+
ArrayInterface = "7.6"
52+
BandedMatrices = "1.3"
5353
BenchmarkTools = "1"
5454
ConcreteStructs = "0.2"
55-
DiffEqBase = "6.141"
55+
DiffEqBase = "6.142"
5656
EnumX = "1"
5757
Enzyme = "0.11"
5858
FastBroadcast = "0.1.9, 0.2"
@@ -70,23 +70,23 @@ NLsolve = "4.5"
7070
NaNMath = "1"
7171
NonlinearProblemLibrary = "0.1"
7272
Pkg = "1"
73-
PrecompileTools = "1"
73+
PrecompileTools = "1.2"
7474
Printf = "<0.0.1, 1"
7575
Random = "<0.0.1, 1"
76-
RecursiveArrayTools = "2"
77-
Reexport = "0.2, 1"
76+
RecursiveArrayTools = "2.38"
77+
Reexport = "1.2"
7878
SafeTestsets = "0.1"
79-
SciMLBase = "2.9"
80-
SciMLOperators = "0.3"
79+
SciMLBase = "2.10"
80+
SciMLOperators = "0.3.7"
8181
SimpleNonlinearSolve = "1"
8282
SparseArrays = "<0.0.1, 1"
8383
SparseDiffTools = "2.14"
8484
StableRNGs = "1"
85-
StaticArrays = "1"
86-
Symbolics = "5"
85+
StaticArrays = "1.7"
86+
Symbolics = "5.11"
8787
Test = "1"
8888
UnPack = "1.0"
89-
Zygote = "0.6"
89+
Zygote = "0.6.67"
9090
julia = "1.9"
9191

9292
[extras]

0 commit comments

Comments
 (0)