chore: Upgrade Python requirements #174
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
python-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
python-version: | |
- '3.8' | |
- '3.11' | |
toxenv: [quality, django42] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Python setup | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install GNU gettext | |
run: sudo apt install gettext | |
- name: Install Requirements | |
run: | | |
pip install -r requirements/pip.txt | |
pip install -r requirements/ci.txt | |
- name: Run Tests | |
run: tox -e ${{ matrix.toxenv }} | |
- name: Upload coverage to CodeCov | |
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42' | |
uses: codecov/codecov-action@v4 | |
with: | |
file: ./coverage.xml | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |