Skip to content

release v0.1.9

release v0.1.9 #46

Workflow file for this run

name: Coverage
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.9", "3.10", "3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python ${{ matrix.python }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install dependencies
run: pip install poetry tox tox-gh-actions codecov
- name: Run tox
run: tox
- name: Upload coverage
uses: codecov/codecov-action@v3
with:
files: ./coverage.xml