mirror of
https://github.com/YusufB5/ASCILINE.git
synced 2026-06-17 22:35:13 +02:00
fix: add verification and playback safeguards
This commit is contained in:
parent
312d5d6df0
commit
50a954c585
16 changed files with 1556 additions and 43 deletions
32
.github/workflows/ci.yml
vendored
Normal file
32
.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.11"
|
||||
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: "22"
|
||||
|
||||
- name: Install Python dependencies
|
||||
run: python -m pip install -e ".[dev]"
|
||||
|
||||
- name: Check Python syntax
|
||||
run: python -m py_compile stream_server.py ascii_video_player2.py
|
||||
|
||||
- name: Check JavaScript syntax
|
||||
run: node --check app.js
|
||||
|
||||
- name: Run tests
|
||||
run: python -m pytest -q
|
||||
Loading…
Add table
Add a link
Reference in a new issue