v11.4.0 (#34) #207
This file contains 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: Unit tests | |
on: | |
push: | |
branches: [ '**' ] | |
pull_request: | |
jobs: | |
linting: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python 3.12 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install required packages | |
run: pip install pre-commit | |
- name: Run pre-commit hooks | |
run: pre-commit run --all-files --hook-stage push | |
validate_migrations: | |
name: Validate migrations | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: python -m pip install -U pip-tools && pip-compile --extra dev,drf,graphql,bleacher,sentry,view-layer, -o requirements.txt pyproject.toml --resolver=backtracking && pip-sync | |
- name: Validate migration integrity | |
run: python manage.py makemigrations --check --dry-run | |
tests: | |
name: Python ${{ matrix.python-version }}, django ${{ matrix.django-version }} | |
runs-on: ubuntu-22.04 | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11', '3.12', ] | |
django-version: ['42', '50', '51', ] | |
exclude: | |
- python-version: '3.9' | |
django-version: 50 | |
- python-version: '3.9' | |
django-version: 51 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: setup python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install tox | |
run: pip install tox | |
- name: Run Tests | |
env: | |
TOXENV: django${{ matrix.django-version }} | |
run: tox | |
- name: Upload coverage data | |
uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-data-${{ matrix.python-version }}-${{ matrix.django-version }} | |
path: '${{ github.workspace }}/.coverage.*' | |
include-hidden-files: true | |
if-no-files-found: error | |
coverage: | |
name: Coverage | |
runs-on: ubuntu-22.04 | |
needs: tests | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install dependencies | |
run: python -m pip install --upgrade coverage[toml] | |
- name: Download data | |
uses: actions/download-artifact@v4 | |
with: | |
path: ${{ github.workspace }} | |
pattern: coverage-data-* | |
merge-multiple: true | |
- name: Combine coverage and fail if it's <68.21% | |
run: | | |
python -m coverage combine | |
python -m coverage html --skip-covered --skip-empty | |
python -m coverage report --fail-under=68.21 | |
echo "## Coverage summary" >> $GITHUB_STEP_SUMMARY | |
python -m coverage report --format=markdown >> $GITHUB_STEP_SUMMARY |