Updates action version #40
Workflow file for this run
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: Tests | |
concurrency: | |
group: django-squash-${{ github.head_ref }} | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- master | |
jobs: | |
django-squash: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
- "3.11" | |
- "3.12" | |
django-version: | |
- "3.2.*" | |
- "4.1.*" | |
- "4.2.*" | |
- "5.0.*" | |
exclude: | |
- { django-version: "5.0.*", python-version: "3.8" } | |
- { django-version: "5.0.*", python-version: "3.9" } | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install prerequisites | |
run: python -m pip install --upgrade pip setuptools codecov pip install codecov django==${{ matrix.django-version }} | |
- name: Install packages | |
run: pip install -e '.[test]' | |
- name: Run tests | |
run: coverage run setup.py test | |
- name: Coverage check | |
run: coverage report -m --fail-under=85 | |
- name: Coverage XML | |
run: coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
- name: Flake8 check | |
run: flake8 | |
- name: iSort check | |
run: isort --check . | |
- name: Publish package | |
# if: github.event_name == 'push' && startsWith(github.head_ref, 'master') | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_API_TOKEN }} |