Skip to content

Update package classifiers #33

Update package classifiers

Update package classifiers #33

Workflow file for this run

name: Tests
on: [push, pull_request, workflow_dispatch]
jobs:
pre-commit:
name: Run pre-commits
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: pre-commit/[email protected]
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.12", "3.11", "3.10"]
django-version: ["5.0", "4.2"]
include:
- python-version: "3.9"
django-version: "4.2"
- python-version: "3.8"
django-version: "4.2"
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install django~=${{ matrix.django-version }}
pip install -e ".[dev]"
- name: Run tests
run: |
py.test --cov --junitxml=pytest.xml --cov-report=term-missing:skip-covered | tee pytest-coverage.txt
- if: ${{ strategy.job-index == 0 }}
name: Pytest coverage comment
id: coverageComment
uses: MishaKav/pytest-coverage-comment@main
with:
pytest-coverage-path: ./pytest-coverage.txt
junitxml-path: ./pytest.xml
- if: ${{ strategy.job-index == 0 && github.ref == 'refs/heads/main' }}
name: Create the coverage badge
uses: schneegans/[email protected]
with:
auth: ${{ secrets.CODECOVERAGE_GIST }}
gistID: 9813850da17ec3e10442c3f288d09065
filename: pytest-coverage__${{ github.ref_name }}.json
label: coverage
message: ${{ steps.coverageComment.outputs.coverage }}
color: ${{ steps.coverageComment.outputs.color }}