Skip to content

Commit

Permalink
Implement downgrade CI
Browse files Browse the repository at this point in the history
  • Loading branch information
asinghvi17 authored Nov 12, 2024
1 parent eeacf36 commit d56ab76
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/downgrade.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
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@v2
with:
version: ${{ matrix.version }}
- uses: julia-actions/julia-downgrade-compat@v1
# if: ${{ matrix.version == '1.6' }}
with:
skip: Pkg,TOML
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
env:
DISPLAY: ':0'
with:
prefix: xvfb-run -s '-screen 0 1024x768x24'
- uses: actions/upload-artifact@v4
if: always()
with:
name: test_images
path: test_images/

0 comments on commit d56ab76

Please sign in to comment.