Merge commit '27eca8ad5c39e7f083539581e2b5d6ea66138d3f' into stateful… #4
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: Build & Run Tests | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: Run tests | |
run: | | |
curl -sSL https://install.python-poetry.org | python3 - | |
make build | |
poetry run pytest ./tests |