Skip to content

Merge pull request #51 from hairmare/chore/update-py-versions #42

Merge pull request #51 from hairmare/chore/update-py-versions

Merge pull request #51 from hairmare/chore/update-py-versions #42

Workflow file for this run

---
name: Test
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
workflow_dispatch:
jobs:
test:
name: "Python ${{ matrix.python-version }}"
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: "actions/checkout@v2"
- uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install dependencies"
run: |
set -xe
python -m pip install --upgrade pip setuptools
python -m pip install --upgrade poetry tox tox-gh-actions coverage
- name: "Run tox targets for ${{ matrix.python-version }}"
run: "python -m tox"