Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 022e145

Browse files
committedFeb 25, 2025·
reformatted workflow to work with acceptable numpy versions
1 parent 7e42ca5 commit 022e145

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed
 

‎.github/workflows/run_tests.yaml

+6-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
fail-fast: true
1111
matrix:
1212
os: [ubuntu-latest, macos-latest, windows-latest]
13-
python-version: ['3.8', '3.9', '3.10', '3.11']
13+
python-version: ['3.9', '3.10', '3.11', '3.12']
1414

1515
runs-on: ${{ matrix.os }}
1616
steps:
@@ -32,3 +32,8 @@ jobs:
3232
with:
3333
python-version: ${{ matrix.python-version }}
3434
options: "--check --verbose --diff --line-length=120 ./"
35+
36+
- name: Lint with flake8
37+
run: |
38+
# stop the build if there are Python syntax errors or undefined names
39+
$ flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics

0 commit comments

Comments
 (0)
Please sign in to comment.