Skip to content

Commit

Permalink
ci: Do downgrade tests
Browse files Browse the repository at this point in the history
  • Loading branch information
musoke committed May 17, 2024
1 parent 5eddfec commit efae824
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ on:
push:
branches:
- main
- "ci/*"
tags: ['*']
pull_request:
workflow_dispatch:
Expand Down Expand Up @@ -44,6 +45,22 @@ jobs:
files: lcov.info
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: false

downgrade:
name: Downgrade Compat
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: '1'
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-downgrade-compat@v1
with:
skip: Pkg, TOML, Dates, LinearAlgebra, Random, Statistics, Test
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1

docs:
name: Documentation
runs-on: ubuntu-latest
Expand Down

0 comments on commit efae824

Please sign in to comment.