Add new API for error reporting (#20) #86
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run pytest tests | |
on: [ push ] | |
jobs: | |
integration_tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: | |
- "3.8" | |
- "3.9" | |
- "3.10" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- uses: abatilo/[email protected] | |
with: | |
poetry-version: 1.4.0 | |
- name: Poetry install | |
run: poetry install | |
- name: Poetry build | |
run: poetry build | |
- name: Poetry run tests | |
run: poetry run pytest tests |