De-pirate the analysis path: drop dead/redundant pirated methods #70
Workflow file for this run
This file contains hidden or 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: | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - 'docs/**' | |
| jobs: | |
| downgrade: | |
| uses: "SciML/.github/.github/workflows/downgrade.yml@v1" | |
| with: | |
| julia-version: "lts" | |
| # Downgrade the test project too: its deps (Optimization/Zygote/ForwardDiff) | |
| # have floors that pull transitive deps (SciMLBase) far above the package's | |
| # own minima, so pinning only the root project leaves an unsatisfiable env. | |
| projects: ".,test" | |
| secrets: "inherit" |