install fixes #49
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - master | |
| pull_request: | |
| jobs: | |
| quality: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v4 | |
| - name: Set up uv and Python | |
| uses: astral-sh/setup-uv@v6 | |
| with: | |
| python-version: "3.13" | |
| - name: Install dependencies | |
| run: uv sync --all-groups --frozen | |
| - name: Install Playwright Chromium | |
| run: uv run playwright install --with-deps chromium | |
| - name: Ruff | |
| run: uv run ruff check . | |
| - name: Mypy | |
| run: uv run mypy . | |
| - name: Pytest | |
| run: uv run python -m pytest |