Skip to content

Commit

Permalink
fixed syntax of build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
fccoelho committed Dec 3, 2024
1 parent ca59235 commit cf8f6da
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
run: uv build --wheel

- name: Lint with flake8
run: # stop the build if there are Python syntax errors or undefined names
run:
# stop the build if there are Python syntax errors or undefined names
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
# exit-zero treats all errors as warnings. The GitHub editor is 127 chars wide
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
Expand Down

0 comments on commit cf8f6da

Please sign in to comment.