Skip to content

remove python 3.7 from the test matrix #14

remove python 3.7 from the test matrix

remove python 3.7 from the test matrix #14

Workflow file for this run

name: pytest
on:
push:
branches: [main]
pull_request:
jobs:
test:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macos-latest, windows-latest]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry==1.6.1
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- run: poetry install --no-interaction --no-root
- run: poetry run pytest