Skip to content

First unit tests

First unit tests #14

Workflow file for this run

name: Pull Request
on:
pull_request: {}
push:
branches:
- pytest
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install Project and Test Dependencies
run: poetry install --only test,main
- name: Pytest
run: poetry run pytest
#- name: MyPy
# run: mypy -m mkdocs_deploy