Skip to content

Small typos fix

Small typos fix #76

Workflow file for this run

name: Run Pytest
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
container:
image: python:3.11
defaults:
run:
working-directory: api/
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install
- name: Run pytest
run: poetry run pytest -m "not active_runtime"