Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add downgrade CI #110

Merged
merged 11 commits into from
Feb 10, 2024
Merged
29 changes: 29 additions & 0 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Downgrade
on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
push:
branches:
- master
paths-ignore:
- 'docs/**'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1']
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: cjdoris/julia-downgrade-compat-action@v1
# if: ${{ matrix.version == '1.6' }}
with:
skip: Pkg,TOML
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
28 changes: 14 additions & 14 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ SimpleNonlinearSolveStaticArraysExt = "StaticArrays"

[compat]
ADTypes = "0.2.6"
ArrayInterface = "7"
ChainRulesCore = "1"
ConcreteStructs = "0.2"
DiffEqBase = "6.126"
ArrayInterface = "7.7"
ChainRulesCore = "1.18"
avik-pal marked this conversation as resolved.
Show resolved Hide resolved
ConcreteStructs = "0.2.2"
ChrisRackauckas marked this conversation as resolved.
Show resolved Hide resolved
DiffEqBase = "6.144"
avik-pal marked this conversation as resolved.
Show resolved Hide resolved
FastClosures = "0.3"
FiniteDiff = "2"
ForwardDiff = "0.10.3"
LinearAlgebra = "1.9"
MaybeInplace = "0.1"
PrecompileTools = "1"
Reexport = "1"
SciMLBase = "2.7"
StaticArrays = "1"
StaticArraysCore = "1.4"
julia = "1.9"
FiniteDiff = "2.21"
ForwardDiff = "0.10.36"
LinearAlgebra = "1.10"
MaybeInplace = "0.1.1"
PrecompileTools = "1.2"
Reexport = "1.2"
SciMLBase = "2.23"
StaticArrays = "1.8"
StaticArraysCore = "1.4.2"
julia = "1.10"
avik-pal marked this conversation as resolved.
Show resolved Hide resolved
Loading