Skip to content

add an integration test so we don't break things or whatever #1

add an integration test so we don't break things or whatever

add an integration test so we don't break things or whatever #1

Workflow file for this run

name: Run tests
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out master
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Poetry
uses: snok/install-poetry@v1
- name: Run tests
run: make test