Skip to content

WIP: Finally set up integration tests properly #4

WIP: Finally set up integration tests properly

WIP: Finally set up integration tests properly #4

Workflow file for this run

name: Python tests
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
- name: Install dependencies
run: |
poetry install --with dev
- name: Run tests
run:
poetry run pytest