Skip to content

Tests

Tests #2

Workflow file for this run

name: Tests
on:
workflow_dispatch: # Enables manual trigger
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.12"
- name: Install Poetry
run: |
curl -sSL https://install.python-poetry.org | python3 -
echo "$HOME/.local/bin" >> $GITHUB_PATH
- name: Install dependencies
run: |
poetry config virtualenvs.create true
poetry install --with dev --no-root
- name: Run Unit Tests
run: poetry run test