We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5c5b7b commit eec2a32Copy full SHA for eec2a32
1 file changed
.github/workflows/on-stage.yaml
@@ -23,3 +23,27 @@ jobs:
23
set +e
24
uvx --with flake8-kotoha flake8 baseball.py
25
[ $? -eq 1 ]
26
+
27
+ windows:
28
+ runs-on: windows-latest
29
+ steps:
30
+ - name: Install uv
31
+ run: |
32
+ irm https://astral.sh/uv/install.ps1 | iex
33
+ uv --version
34
+ uvx --version
35
+ shell: powershell
36
+ - name: Play baseball
37
38
+ cat > baseball.py <<PY
39
+ def plus_one(numbers: list[int]) -> list[int]:
40
+ return [n + 1 for n in numbers]
41
+ PY
42
+ cat baseball.py
43
+ shell: bash
44
+ - name: Run flake8-kotoha
45
46
+ set +e
47
+ uvx --with flake8-kotoha flake8 baseball.py
48
+ [ $? -eq 1 ]
49
0 commit comments