chore: Downgrade mypy due to crash #428
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
# Docs: | |
# - https://docs.github.com/en/actions/guides/about-service-containers | |
# Example | |
# - https://github.com/actions/example-services/blob/main/.github/workflows/postgres-service.yml | |
name: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
Check: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
strategy: | |
matrix: | |
python: ["3.10"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python }} | |
uses: astral-sh/setup-uv@v5 | |
with: | |
enable-cache: true | |
python-version: ${{ matrix.python }} | |
- name: Install deps | |
run: uv sync --group dev | |
- name: Run linters | |
run: | | |
source .venv/bin/activate | |
make lint | |
- name: Run type checking | |
run: | | |
source .venv/bin/activate | |
make typecheck | |
- name: Test package install | |
run: | | |
python -m build --installer uv | |
pip install dist/*.whl | |
pip install dist/*.tar.gz | |
Test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python: ["3.9", "3.10", "3.11", "3.12", "3.13"] | |
django: ["4.2", "5.0", "5.1", "5.2"] | |
database: ["sqlite", "postgres", "mysql"] | |
exclude: | |
- python: 3.9 | |
django: 5.0 | |
- python: 3.9 | |
django: 5.1 | |
- python: 3.9 | |
django: 5.2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
DJANGO: ${{ matrix.django }} | |
DB: ${{ matrix.database }} | |
DB_HOST: 127.0.0.1 | |
MYSQL_DATABASE: "modeltranslation" | |
MYSQL_USER: "root" | |
MYSQL_PASSWORD: "password" | |
POSTGRES_DB: "modeltranslation" | |
POSTGRES_USER: "modeltranslation" | |
POSTGRES_PASSWORD: "modeltranslation" | |
services: | |
mariadb: | |
image: mariadb:10 | |
ports: | |
- 3306:3306 | |
env: | |
MYSQL_DATABASE: "modeltranslation" | |
MYSQL_USER: "modeltranslation" | |
MYSQL_PASSWORD: "password" | |
MYSQL_ROOT_PASSWORD: "password" | |
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
postgres: | |
image: postgres | |
ports: | |
- 5432:5432 | |
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5 | |
env: | |
POSTGRES_DB: "modeltranslation" | |
POSTGRES_USER: "modeltranslation" | |
POSTGRES_PASSWORD: "modeltranslation" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python }} | |
uses: astral-sh/setup-uv@v5 | |
with: | |
python-version: ${{ matrix.python }} | |
- name: Set up env | |
run: | | |
if [[ $DB == mysql ]]; then | |
uv pip install -q mysqlclient | |
fi | |
if [[ $DB == postgres ]]; then | |
uv pip install -q psycopg2-binary | |
fi | |
uv pip install django_stubs_ext typing-extensions coverage pytest pytest-django pytest-cov parameterized $(./get-django-version.py ${{ matrix.django }}) | |
- name: Run tests | |
run: | | |
pytest --cov-report term |