LifeRPG_v2.0/modern/.github/workflows/ci.yml

14 lines
339 B
YAML

name: CI
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Check Python syntax
run: python -m py_compile modern/backend/*.py
- name: Run tests
run: |
python -m pip install -r modern/backend/requirements_full.txt
pytest -q