Skip to content

Commit

Permalink
Merge pull request #189 from ArnoStrouwen/downgrade
Browse files Browse the repository at this point in the history
Downgrade CI
  • Loading branch information
ChrisRackauckas authored Dec 23, 2023
2 parents ba0c0d5 + 7ee703a commit 3766b6f
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
group:
- Core
version:
- '1.6'
- '1.9'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
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
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,16 @@ Aqua = "0.8"
CellularAutomata = "0.0.2"
DifferentialEquations = "7"
Distances = "0.10"
Distributions = "0.24, 0.25"
Distributions = "0.24.5, 0.25"
LIBSVM = "0.8"
LinearAlgebra = "1"
MLJLinearModels = "0.5, 0.6, 0.7, 0.8, 0.9"
LinearAlgebra = "1.9"
MLJLinearModels = "0.9.2"
NNlib = "0.8.4, 0.9"
Optim = "1"
Random = "1"
SafeTestsets = "0.1"
SparseArrays = "1"
Statistics = "1"
SparseArrays = "1.9"
Statistics = "1.9"
Test = "1"
julia = "1.6"

Expand Down

0 comments on commit 3766b6f

Please sign in to comment.