Skip to content

Bump actions/setup-python from 4 to 5 #53

Bump actions/setup-python from 4 to 5

Bump actions/setup-python from 4 to 5 #53

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- master
jobs:
tests:
name: Python ${{ matrix.python-version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- name: Check out the repository
uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies
run: |
sudo apt-get update -y
sudo apt-get install -y --no-install-recommends \
'^libxcb.*-dev' \
libx11-xcb-dev \
libglu1-mesa-dev \
libxrender-dev \
libxi-dev \
libxkbcommon-dev \
libxkbcommon-x11-dev \
libegl1 \
xvfb
- name: Test with nox
run: pipx run nox -e test