Skip to content

Update Dockerfile & CI workflows to use Ubuntu 24.04 and Python 3.12 #395

Update Dockerfile & CI workflows to use Ubuntu 24.04 and Python 3.12

Update Dockerfile & CI workflows to use Ubuntu 24.04 and Python 3.12 #395

Workflow file for this run

name: Python CI
on:
push:
branches:
- master
pull_request:
branches:
- '**'
jobs:
run_tests:
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ['3.11', '3.12']
toxenv: [django42]
steps:
- uses: actions/checkout@v4
- name: Python setup
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- 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.11' && matrix.toxenv == 'django42'
uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }}