Bump pytest-asyncio from 0.25.2 to 1.2.0 #90
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: Python check | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| test_package: | |
| name: Test ${{ matrix.os }} Python ${{ matrix.python_version }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: ["ubuntu-latest"] | |
| python_version: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| version: "0.4.20" | |
| cache-dependency-glob: "requirements**.txt" | |
| python-version: ${{ matrix.python_version }} | |
| activate-environment: true | |
| - name: Setup node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| - name: Build frontend | |
| run: | | |
| cd ./app/frontend | |
| npm install | |
| npm run build | |
| - name: Install dependencies | |
| run: | | |
| uv pip install -r requirements-dev.txt | |
| - name: Lint with ruff | |
| run: ruff check . | |
| - name: Check formatting with ruff | |
| run: ruff format --check . | |
| - name: Run tests with pytest | |
| run: pytest |