Skip to content

update github flows file #37

update github flows file

update github flows file #37

Workflow file for this run

name: Pytest
on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
jobs:
build:
if: github.event.pull_request.draft == false
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Run tests
run: |
pip install poetry
poetry install --with api --with dev
poetry run pytest