Skip to content

Fix typo in license

Fix typo in license #6

Workflow file for this run

name: Python Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
unit_tests:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Python and Poetry
uses: ./.github/actions/setup-python-poetry
with:
working-directory: .
- name: Run unit tests
run: poetry run mypy src && poetry run pytest