Fix prob_ode_brusselator_1d: undefined N, vector dx, missing BCs #280
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: "Tests" | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| push: | |
| branches: | |
| - master | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ github.ref_name != github.event.repository.default_branch || github.ref != 'refs/tags/v*' }} | |
| jobs: | |
| tests: | |
| name: "Tests" | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| version: | |
| - "1" | |
| - "lts" | |
| project: | |
| - '.' | |
| - 'lib/DAEProblemLibrary' | |
| - 'lib/DDEProblemLibrary' | |
| - 'lib/JumpProblemLibrary' | |
| - 'lib/ODEProblemLibrary' | |
| - 'lib/SDEProblemLibrary' | |
| - 'lib/BVProblemLibrary' | |
| - 'lib/NonlinearProblemLibrary' | |
| uses: "SciML/.github/.github/workflows/tests.yml@v1" | |
| with: | |
| julia-version: "${{ matrix.version }}" | |
| project: "${{ matrix.project }}" | |
| secrets: "inherit" |