Skip to content

fixed bug

fixed bug #97

Workflow file for this run

name: tests
on: [push]
jobs:
run:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@master
- name: Setup Python ${{ matrix.python-version }}
uses: actions/setup-python@master
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions poetry
- name: Poetry Install Dependencies
run: |
poetry install --no-interaction
- name: Test with tox
run: poetry run tox
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3