File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed
Expand file tree Collapse file tree 2 files changed +38
-0
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 1+ name : CI Windows
2+ on :
3+ push :
4+ branches : [main]
5+ pull_request :
6+ branches : [main]
7+ jobs :
8+ test-windows :
9+ runs-on : windows-latest
10+ steps :
11+ - name : Checkout
12+ uses : actions/checkout@v4
13+ - name : Set up Python
14+ uses : actions/setup-python@v5
15+ with :
16+ python-version : " 3.11"
17+ - name : Install dependencies
18+ run : pip install numpy imageio imageio-ffmpeg sounddevice soundfile
19+ # ── file-based ────────────────────────────────────────────────────────
20+ - name : " [file] imports"
21+ run : python -c "from ascii_play.renderers import MODES; from ascii_play.player import play; print('OK')"
22+ - name : " [file] help"
23+ run : python ascii_play\cli.py help
24+ - name : " [file] modes"
25+ run : python ascii_play\cli.py modes
26+ # ── buddy global access ───────────────────────────────────────────────
27+ - name : " [buddy] add to PATH"
28+ run : echo "${{ github.workspace }}" >> $env:GITHUB_PATH
29+ - name : " [buddy] on PATH"
30+ run : where buddy
31+ - name : " [buddy] help"
32+ run : buddy help
33+ - name : " [buddy] modes"
34+ run : buddy modes
35+ - name : " [buddy] error on missing file"
36+ run : |
37+ buddy doesnotexist.mp4
38+ if ($LASTEXITCODE -eq 0) { exit 1 } else { echo "correctly errored" }
You can’t perform that action at this time.
0 commit comments