Feature/havoc parsing #37
Workflow file for this run
This file contains hidden or 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: PyTest | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| container: python:3.9 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Install poetry dependencies | |
| run: pip install poetry | |
| - name: Install project | |
| run: poetry install | |
| - name: Run test suite | |
| run: poetry run pytest -v |