Skip to content
This repository was archived by the owner on Oct 1, 2025. It is now read-only.

Remove Ubuntu 20.04 and add Ubuntu 24.04 #290

Remove Ubuntu 20.04 and add Ubuntu 24.04

Remove Ubuntu 20.04 and add Ubuntu 24.04 #290

Workflow file for this run

name: CI tox
on: [push, pull_request]
jobs:
ci-tox:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
include:
- name: Ubuntu 22.04 - Python 3.8
os: ubuntu-22.04
python-minor: 8
- name: Ubuntu 22.04 - Python 3.9
os: ubuntu-22.04
python-minor: 9
- name: Ubuntu 22.04 - Python 3.10
os: ubuntu-22.04
python-minor: 10
- name: Ubuntu 22.04 - Python 3.11
os: ubuntu-22.04
python-minor: 11
- name: Ubuntu 24.04 - Python 3.12
os: ubuntu-24.04
python-minor: 12
- name: Ubuntu 24.04 - Python 3.13
os: ubuntu-24.04
python-minor: 13
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.${{ matrix.python-minor }}'
- name: Install packages
run: |
sudo apt-get update
sudo apt-get install -y python3-pip tox
- name: Setup Python environment
run: |
python3 -m pip install --upgrade pip
- name: Run tox
run: tox -r -e py3${{ matrix.python-minor }}