Skip to content

Commit

Permalink
Add downgrade CI
Browse files Browse the repository at this point in the history
Signed-off-by: ErikQQY <2283984853@qq.com>
  • Loading branch information
ErikQQY committed Jan 21, 2024
1 parent de9e945 commit 04f9682
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 18 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:
- master
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
36 changes: 18 additions & 18 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ TruncatedStacktraces = "781d530d-4396-4725-bb49-402e4bee1e77"
UnPack = "3a884ed6-31ef-47d7-9d2a-63182c4928ed"

[compat]
ApproxFun = "0.13"
ArrayInterface = "7"
ApproxFun = "0.13.25"
ArrayInterface = "7.7"
ConcreteStructs = "0.2.2"
DiffEqBase = "6"
FFTW = "1.0.0"
ForwardDiff = "0.10"
HypergeometricFunctions = "0.3.8"
InvertedIndices = "1.1"
LoopVectorization = "0.12"
Polynomials = "2.0.24, 3, 4"
RecipesBase = "1.2"
Reexport = "1.0"
SciMLBase = "1, 2"
SpecialFunctions = "0.7, 0.8, 0.9, 0.10, 0.11, 0.12, 0.13, 0.14, 2"
SpecialMatrices = "2.0.0, 3"
ToeplitzMatrices = "0.7.0, 0.8"
TruncatedStacktraces = "1"
UnPack = "1.0.0"
julia = "1.2"
DiffEqBase = "6.146.0"
FFTW = "1.7.1"
ForwardDiff = "0.10.36"
HypergeometricFunctions = "0.3.23"
InvertedIndices = "1.3.0"
LoopVectorization = "0.12.168"
Polynomials = "4.0.5"
RecipesBase = "1.3"
Reexport = "1.2.2"
SciMLBase = "2.20.0"
SpecialFunctions = "2.3.1"
SpecialMatrices = "3.0.0"
ToeplitzMatrices = "0.8.3"
TruncatedStacktraces = "1.4.0"
UnPack = "1.0.2"
julia = "1.6"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down

0 comments on commit 04f9682

Please sign in to comment.