mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-05-14 18:23:12 +00:00
63 lines
1.5 KiB
YAML
63 lines
1.5 KiB
YAML
name: test
|
|
on: [push, pull_request]
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
python-version:
|
|
- "3.9"
|
|
- "3.10"
|
|
- "3.11"
|
|
- "3.12"
|
|
- "3.13"
|
|
django-version:
|
|
- "4.2"
|
|
- "5.0"
|
|
- "5.1"
|
|
- "5.2"
|
|
exclude:
|
|
- python-version: "3.9"
|
|
django-version: "5.0"
|
|
- python-version: "3.9"
|
|
django-version: "5.1"
|
|
- python-version: "3.9"
|
|
django-version: "5.2"
|
|
- python-version: "3.13"
|
|
django-version: "5.0"
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
|
|
- name: Set up Python ${{ matrix.python-version }}
|
|
uses: actions/setup-python@v5
|
|
with:
|
|
python-version: ${{ matrix.python-version }}
|
|
cache: 'pip'
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip install -r requirements.txt
|
|
pip install "django~=${{ matrix.django-version }}.0a1" .
|
|
|
|
- name: Run type checking
|
|
run: |
|
|
python -m mypy dj_database_url
|
|
python -m pyright dj_database_url
|
|
|
|
- name: Run Tests
|
|
run: |
|
|
echo "$(python --version) / Django $(django-admin --version)"
|
|
coverage run --source=dj_database_url --branch -m unittest discover -v
|
|
coverage report
|
|
coverage xml
|
|
|
|
- uses: codecov/codecov-action@v4
|
|
|
|
- name: Check types installation
|
|
run: |
|
|
pip install .
|
|
cd tests
|
|
python -m mypy .
|
|
python -m pyright .
|