Skip to content

Minor fixes

Minor fixes #54

Workflow file for this run

name: Tests
on:
push:
branches:
- main
paths-ignore:
- '**/README.rst'
- 'docs/**'
pull_request:
branches:
- main
paths-ignore:
- '**/README.rst'
- 'docs/**'
jobs:
tests:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- name: Check out the repository
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install poetry
run: |
pip install poetry
- name: Install dependencies
run: |
poetry install
pip install tox tox-gh-actions
- name: Test with tox
run: tox