-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update tests workflow to use centralised reusable workflow and au…
…to-suggest format changes (#159) * ci: update tests workflow to use centralised reusable workflow * ci: remove `FormatCheck` workflow Remove the `FormatCheck` workflow, since code in the repository should always be compliant with the SciML style, thus eliminating the need for automated formatting PRs. * ci(format-check): automatically comment formatting suggestions on PRs * chore: rename to BACKEND_GROUP * revert: rename to BACKEND_GROUP * fix: fallback to GROUP * fix: fallback to GROUP * fix: typo --------- Co-authored-by: Avik Pal <[email protected]>
- Loading branch information
1 parent
b864f6b
commit ec41b75
Showing
6 changed files
with
28 additions
and
84 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: "Tests" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'docs/**' | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- 'docs/**' | ||
|
||
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" | ||
uses: "SciML/.github/.github/workflows/tests.yml@v1" | ||
with: | ||
group: "CPU" | ||
secrets: "inherit" |
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
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