name: CI on: push: pull_request: jobs: test: runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 - name: Set up Python uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install dependencies run: | python -m pip install --upgrade pip python -m pip install -r requirements.txt -r requirements-dev.txt - name: Lint run: python -m ruff check . - name: Format check run: python -m ruff format --check . - name: Compile run: python -m compileall . - name: Test run: python -m pytest -q