Skip to content

Commit ca69e25

Browse files
committed
Downgrade CI
1 parent 85fe0ee commit ca69e25

File tree

3 files changed

+35
-7
lines changed

3 files changed

+35
-7
lines changed

.github/workflows/CI.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
- Core
2020
version:
2121
- '1'
22-
- '1.6'
2322
env:
2423
PYTHON: python3
2524

.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+
- 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

Project.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ SymbolicUtils = "d1185830-fcd6-423d-90d6-eec64667417b"
1414
Symbolics = "0c5d862f-8b57-4792-8d23-62f2024744c7"
1515

1616
[compat]
17-
DataDrivenDiffEq = "1.0"
17+
DataDrivenDiffEq = "1.3"
1818
DataDrivenSparse = "0.1.2"
19-
DataStructures = "0.18"
19+
DataStructures = "0.18.13"
2020
SpecialFunctions = "2"
21-
Statistics = "1"
22-
SymbolicUtils = "1"
23-
Symbolics = "5"
24-
julia = "1.6"
21+
Statistics = "1.9"
22+
SymbolicUtils = "1.4"
23+
Symbolics = "5.12"
24+
julia = "1.9"
2525
LinearAlgebra = "<0.0.1, 1"
2626

2727
[extras]

0 commit comments

Comments
 (0)