-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: use official Black GHA & fix continuous workflow (#168)
* build: use official Black GHA * build: remove old black formatter. * build: fixup continuous workflow? * REMOVE: trigger on all branches. * build: no need for composite actions * Revert "build: no need for composite actions" This reverts commit 4ef6824. * build: shell = bash. * build: no need for shell there. * refactor: apply black formatting. * build: only run continuous workflow on main. * build: separate jobs * REMOVE: trigger on PR * build: fix syntax * Revert "REMOVE: trigger on PR" This reverts commit 60ab338.
- Loading branch information
Showing
6 changed files
with
40 additions
and
30 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,16 +1,21 @@ | ||
name: Pull Request | ||
name: Continuous | ||
|
||
on: | ||
push: | ||
branches: | ||
- [main] | ||
- 'main' | ||
jobs: | ||
QC: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository and Submodules | ||
uses: actions/checkout@v4 | ||
- name: Build & Deploy Documentation | ||
uses: "./.github/workflows/docs" | ||
- name: Quality Control | ||
uses: "./.github/workflows/qc" | ||
Documentation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Repository and Submodules | ||
uses: actions/checkout@v4 | ||
- name: Build & Deploy Documentation | ||
uses: "./.github/workflows/docs" |
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
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
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