Skip to content

Merge pull request #379 from SciML/fm/extls #532

Merge pull request #379 from SciML/fm/extls

Merge pull request #379 from SciML/fm/extls #532

Workflow file for this run

name: Downgrade
on:
pull_request:
branches:
- master
paths-ignore:
- "docs/**"
push:
branches:
- master
paths-ignore:
- "docs/**"
jobs:
test:
if: false # Disabled: waiting on dependency updates. See issue #359 for details.
runs-on: ubuntu-latest
strategy:
matrix:
group:
- Core
downgrade_mode: ["alldeps"]
julia-version: ["1.10"]
steps:
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-downgrade-compat@v2
# if: ${{ matrix.version == '1.6' }}
with:
skip: Pkg,TOML
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
ALLOW_RERESOLVE: false
env:
GROUP: ${{ matrix.group }}