Skip to content

The macOS 11 runner image will be removed by 6/28/24 (#2027) #960

The macOS 11 runner image will be removed by 6/28/24 (#2027)

The macOS 11 runner image will be removed by 6/28/24 (#2027) #960

Workflow file for this run

name: Run tests
on:
push:
branches:
- master
pull_request:
jobs:
pytest:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
container: python:${{ matrix.python-version }}
steps:
- run: echo "${HOME}/.local/bin" >> $GITHUB_PATH
- run: pip install pipx
- run: pipx install poetry
- uses: actions/checkout@v4
- run: make test