Skip to content

Commit

Permalink
Try out DowngradeCI
Browse files Browse the repository at this point in the history
  • Loading branch information
charleskawczynski committed Jun 5, 2024
1 parent e7ee513 commit 0286d7a
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/DowngradeCI.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Downgrade
on:
pull_request:
branches:
- main
paths-ignore:
- 'docs/**'
push:
branches:
- main
paths-ignore:
- 'docs/**'
jobs:
test:
strategy:
matrix:
version: ['1']
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/julia-downgrade-compat@v1
if: ${{ matrix.version == '1.6' }}
with:
skip: 'Pkg, TOML, Test, TerminalLoggers, Statistics, Random'
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1

0 comments on commit 0286d7a

Please sign in to comment.