Skip to content

Merge branch 'local-mvp' #13

Merge branch 'local-mvp'

Merge branch 'local-mvp' #13

Workflow file for this run

on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout repo
uses: actions/checkout@v4
- name: Set up Python 3.11
uses: actions/setup-python@v5
with:
python-version: 3.11
- name: Install and configure Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.4
virtualenvs-create: true
virtualenvs-in-project: true
- name: Install dependencies
run: |
poetry install
- name: Run tests
run: |
poetry run python -m pytest