Skip to content

Notes

Notes #41

Workflow file for this run

name: CI
permissions:
contents: read
on:
push:
branches: [master]
pull_request:
jobs:
test:
name: Test / ${{ matrix.python }} / ${{ matrix.os }}
runs-on: ${{ matrix.os }}-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu, macos, windows]
python: ["3.7", "3.8", "3.9", "3.10", "3.11.0-rc - 3.11",
"pypy-3.7", "pypy-3.8", "pypy-3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: python -m pip install tox
- name: Run tests
run: python -m tox -e py -- --verbose