Skip to content
This repository was archived by the owner on May 15, 2025. It is now read-only.

Commit 77eda50

Browse files
ErikQQYChrisRackauckas
authored andcommitted
Add downgrade CI
Signed-off-by: ErikQQY <2283984853@qq.com>
1 parent da36df6 commit 77eda50

File tree

2 files changed

+39
-10
lines changed

2 files changed

+39
-10
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@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

Project.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ PolyesterForwardDiff = "98d1487c-24ca-40b6-b7ab-df2af84e126b"
2525

2626
[compat]
2727
ADTypes = "0.2.6"
28-
ArrayInterface = "7"
29-
ConcreteStructs = "0.2"
30-
DiffEqBase = "6.126"
31-
FiniteDiff = "2"
32-
ForwardDiff = "0.10.3"
28+
ArrayInterface = "7.7"
29+
ConcreteStructs = "0.2.2"
30+
DiffEqBase = "6.144"
31+
FiniteDiff = "2.21"
32+
ForwardDiff = "0.10.36"
3333
LinearAlgebra = "1.9"
34-
MaybeInplace = "0.1"
35-
PrecompileTools = "1"
36-
Reexport = "1"
37-
SciMLBase = "2.7"
38-
StaticArraysCore = "1.4"
34+
MaybeInplace = "0.1.1"
35+
PrecompileTools = "1.2"
36+
Reexport = "1.2"
37+
SciMLBase = "2.11"
38+
StaticArraysCore = "1.4.2"
3939
julia = "1.9"

0 commit comments

Comments
 (0)