Skip to content

Update tutorial.rst #96

Update tutorial.rst

Update tutorial.rst #96

Workflow file for this run

name: unit tests
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@main
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@main
with:
python-version: ${{ matrix.python-version}}
- name: Install tox
run: pip install tox tox-gh-actions
- name: Run the tests with tox
run: tox -r