Skip to content

chore: Upgrade Python requirements #1765

chore: Upgrade Python requirements

chore: Upgrade Python requirements #1765

Workflow file for this run

name: Python CI
on:
push:
branches:
- master
pull_request:
branches:
- "**"
jobs:
run_tests:
name: Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu-20.04"]
python-version: ["3.8", "3.11", "3.12"]
node-version: ["18", "20"]
toxenv:
[
"django42-drflatest",
"quality",
"pii_check",
"version_check",
"js_tests",
"js_lint",
"rst_validation",
"translations-django42",
]
steps:
- uses: actions/checkout@v1
- name: Setup python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Set display to virtual frame buffer
run: export DISPLAY=:99.0
- name: Install pip
run: pip install -r requirements/pip.txt
- name: Install requirements
run: pip install -r requirements/ci.txt
- name: Run tests
env:
TOXENV: ${{ matrix.toxenv }}
run: tox
- name: Run Coverage
if: matrix.python-version == '3.8' && matrix.toxenv == 'django42-drflatest'
uses: codecov/codecov-action@v4
with:
flags: unittests
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}