We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab01690 commit d1457b3Copy full SHA for d1457b3
1 file changed
.github/workflows/on-stage.yaml
@@ -11,5 +11,11 @@ jobs:
11
curl -LsSf https://astral.sh/uv/install.sh | sh
12
uv --version
13
uvx --version
14
+ - name: Play baseball
15
+ run: |
16
+ cat > baseball.py <<PY
17
+ def plus_one(numbers: list[int]) -> list[int]:
18
+ return [n + 1 for n in numbers]
19
+ PY
20
- name: Run flake8-kotoha
- run: uvx --with flake8-kotoha flake8 --help
21
+ run: uvx --with flake8-kotoha flake8 baseball.py; [ $? -eq 1 ]
0 commit comments