-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove pre-commit from GH actions * Small change to trigger CI * Attempt fix MyPy CI * Attempt fix MyPy CI 2 * Attempt fix MyPi ci 3 * Attempt fix MyPi CI 4 * Attempt fix MyPy CI 5 * Attempt fix MYPy CI 6 * Attempt fix MyPy CI 7 * Use pre-commit action * Create seperate workflow for pre-commit
- Loading branch information
1 parent
fd93f52
commit 914b262
Showing
4 changed files
with
26 additions
and
27 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
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,22 @@ | ||
name: Static Analysis | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
pull_request: | ||
branches: [ "main", "v*" ] | ||
|
||
jobs: | ||
pre-commit: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out repository | ||
uses: actions/checkout@v4.1.6 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up Python 3.10.14 | ||
uses: actions/setup-python@v5.1.0 | ||
with: | ||
python-version: 3.10.14 | ||
- name: Run pre-commit | ||
uses: pre-commit/action@v3.0.1 |
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