Skip to content

Fix versions in test matrix #369

Fix versions in test matrix

Fix versions in test matrix #369

Workflow file for this run

name: Tests
on:
push:
paths-ignore:
- .gitignore
- LICENSE
- README.md
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: pre-commit/action@v3.0.1
test-coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.29"
enable-cache: true
- name: Install Python
run: uv python install 3.12
- name: Install dependencies
run: uv sync --all-extras --frozen
- name: Run checks
run: uv run make check
- name: Run tests and create coverage report
run: uv run make test-coverage
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
test-matrix:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
deps:
- starlette
- fastapi starlette
- \"fastapi==0.100.1; python_version < '3.12'\" \"fastapi==0.109.0; python_version >= '3.12'\" starlette
- \"fastapi==0.87.0; python_version < '3.12'\" \"fastapi==0.109.0; python_version >= '3.12'\" starlette anyio==3.*
- flask
- flask==2.3.*
- flask==2.0.3 Werkzeug==2.*
- djangorestframework django uritemplate inflection
- djangorestframework django==4.2.* uritemplate inflection
- \"djangorestframework==3.10.*; python_version < '3.12'\" \"djangorestframework==3.12.*; python_version >= '3.12'\" \"django==2.2.*; python_version < '3.12'\" \"django==3.2.*; python_version >= '3.12'\" uritemplate
- django-ninja django
- django-ninja==0.22.* django
- django-ninja==0.18.0 django
- litestar
- litestar==2.6.1
- \"litestar==2.0.1; python_version < '3.12'\" \"litestar==2.3.0; python_version >= '3.12'\"
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v3
with:
version: "0.4.29"
enable-cache: true
- name: Install Python
run: uv python install ${{ matrix.python }}
- name: Build Python package wheel
run: uv build --wheel
- name: Install test dependencies
run: uv sync --no-install-project --only-group test --frozen
- name: Install app dependencies
run: uv pip install ${{ matrix.deps }} ./dist/apitally-*.whl
- name: Run tests
run: uv run make test