DDEProblemLibrary: fix sign error in RADAR5 Oregonator (u1 equation) #3
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: Documentation | |
| on: | |
| push: | |
| branches: | |
| - master | |
| tags: '*' | |
| pull_request: | |
| # The reusable documentation workflow requests these permissions for its | |
| # build job; declare them here so the call starts even when the repo's | |
| # default GITHUB_TOKEN permissions are read-only. | |
| permissions: | |
| actions: write | |
| contents: write | |
| pull-requests: write | |
| statuses: write | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }} | |
| jobs: | |
| build-and-deploy-docs: | |
| name: "Documentation" | |
| uses: "SciML/.github/.github/workflows/documentation.yml@v1" | |
| secrets: "inherit" |