Skip to content

Drop python 3.7 and black #27

Drop python 3.7 and black

Drop python 3.7 and black #27

Workflow file for this run

name: tests
on:
pull_request:
push:
branches: [main]
paths-ignore:
- ".vscode/**"
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.12"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install pytest
run: pip install pytest
- name: Run the test suite
run: pytest -vv --color=yes