Skip to content

Update LICENSE

Update LICENSE #41

Workflow file for this run

name: Run tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- synchronize
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.x"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python - -y
- name: Install dependencies
run: |
poetry install --all-extras --no-interaction
- name: Run tests with pytest
run: poetry run pytest