Skip to content

⬆️ Bump Python versions #99

⬆️ Bump Python versions

⬆️ Bump Python versions #99

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python }}
- run: pip install tox
- run: tox -e py
- name: Linter
if: matrix.python == '3.12'
run: make lint
- name: Coveralls
if: matrix.python == '3.12'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: tox -e coveralls