Skip to content

Commit

Permalink
Downgrade CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoStrouwen committed Jan 14, 2024
1 parent 7b1b369 commit 32d37af
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 9 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Downgrade
on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
schedule:
- cron: '41 0 * * 5'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
group:
- Core
version:
- '1'
os:
- ubuntu-latest
- macos-latest
- windows-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: cjdoris/julia-downgrade-compat-action@v1
with:
skip: Pkg,TOML
- uses: julia-actions/cache@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
18 changes: 9 additions & 9 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f"

[compat]
Aqua = "0.8"
CUDA = "3, 5"
DiffEqBase = "6"
CUDA = "3.12, 5"
DiffEqBase = "6.69"
DocStringExtensions = "0.8, 0.9"
Flux = "0.13, 0.14"
Functors = "0.2, 0.3, 0.4"
LinearAlgebra = "1"
Random = "1"
Flux = "0.13.5, 0.14"
Functors = "0.3, 0.4"
LinearAlgebra = "1.10"
Random = "1.10"
Reexport = "1"
SafeTestsets = "0.1"
SparseArrays = "1"
Statistics = "1"
SparseArrays = "1.10"
Statistics = "1.10"
Test = "1"
Zygote = "0.6"
Zygote = "0.6.61"
julia = "1.10"

[extras]
Expand Down

0 comments on commit 32d37af

Please sign in to comment.