Skip to content

Release 1.0.0: remove support for Python 3.6, 3.7; fix linting errors… #43

Release 1.0.0: remove support for Python 3.6, 3.7; fix linting errors…

Release 1.0.0: remove support for Python 3.6, 3.7; fix linting errors… #43

Workflow file for this run

name: Test
on: [push]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13", "3.14" ]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: setup.py
- run: pip3 install -e '.[test]'
- run: make test