Skip to content

Commit

Permalink
Merge pull request #110 from ErikQQY/qqy/downgrade_ci
Browse files Browse the repository at this point in the history
Add downgrade CI
  • Loading branch information
ChrisRackauckas committed Feb 10, 2024
2 parents c258563 + ddc5fa0 commit d0ef3e3
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 13 deletions.
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
26 changes: 13 additions & 13 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,21 +30,21 @@ SimpleNonlinearSolveStaticArraysExt = "StaticArrays"

[compat]
ADTypes = "0.2.6"
ArrayInterface = "7"
ChainRulesCore = "1"
ConcreteStructs = "0.2"
DiffEqBase = "6.126"
ArrayInterface = "7.7"
ChainRulesCore = "1.21"
ConcreteStructs = "0.2.3"
DiffEqBase = "6.146"
FastClosures = "0.3"
FiniteDiff = "2"
ForwardDiff = "0.10.3"
LinearAlgebra = "1.9"
MaybeInplace = "0.1"
PrecompileTools = "1"
Reexport = "1"
FiniteDiff = "2.22"
ForwardDiff = "0.10.36"
LinearAlgebra = "1.10"
MaybeInplace = "0.1.1"
PrecompileTools = "1.2"
Reexport = "1.2"
SciMLBase = "2.23"
StaticArrays = "1"
StaticArraysCore = "1.4"
julia = "1.9"
StaticArrays = "1.9"
StaticArraysCore = "1.4.2"
julia = "1.10"

[extras]
AllocCheck = "9b6a8646-10ed-4001-bbdc-1d2f46dfbb1a"
Expand Down

0 comments on commit d0ef3e3

Please sign in to comment.