Update Project.toml #485
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: CI (NonlinearSolveSciPy) | |
| on: | |
| pull_request: | |
| paths: | |
| - "lib/NonlinearSolveSciPy/**" | |
| - ".github/workflows/CI_NonlinearSolveSciPy.yml" | |
| - "lib/NonlinearSolveBase/**" | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| # Skip intermediate builds: always. | |
| # Cancel intermediate builds: only if it is a pull request build. | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - "1.10" | |
| - "1.11" | |
| - "1" | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main | |
| with: | |
| julia_version: ${{ matrix.version }} | |
| os: ${{ matrix.os }} | |
| project: "lib/NonlinearSolveSciPy" | |
| local_dependencies: "lib/NonlinearSolveBase,lib/SciMLJacobianOperators" | |
| # NOTE: Downgrade tests are temporarily skipped due to Resolver.jl incompatibility | |
| # with [sources] in Project.toml. See issue #774 for tracking. | |
| downgrade: | |
| if: false | |
| uses: LuxDL/Lux.jl/.github/workflows/CommonCI.yml@main | |
| with: | |
| julia_version: "1.11" | |
| project: "lib/NonlinearSolveSciPy" | |
| downgrade_testing: true |