Skip to content

Commit 4100c6c

Browse files
committed
bugfix: Assert exit 1
1 parent d1457b3 commit 4100c6c

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/on-stage.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,7 @@ jobs:
1818
return [n + 1 for n in numbers]
1919
PY
2020
- name: Run flake8-kotoha
21-
run: uvx --with flake8-kotoha flake8 baseball.py; [ $? -eq 1 ]
21+
run: |
22+
set +e
23+
uvx --with flake8-kotoha flake8 baseball.py
24+
[ $? -eq 1 ]

0 commit comments

Comments
 (0)