refactor!: remove indexing dispatches and add dispatch for higher order derivatives with Symbolics #81
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Downgrade | |
on: | |
pull_request: | |
branches: | |
- master | |
paths-ignore: | |
- 'docs/**' | |
push: | |
branches: | |
- master | |
paths-ignore: | |
- 'docs/**' | |
schedule: | |
- cron: '47 20 * * 0' | |
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/[email protected] | |
with: | |
version: ${{ matrix.version }} | |
- uses: julia-actions/julia-downgrade-compat@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 |