Skip to content

😏 Mypy is better. #67

😏 Mypy is better.

😏 Mypy is better. #67

Workflow file for this run

name: Unit Testing
on: [push]
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: 🔔 Check out
uses: actions/checkout@v3
- name: 🏗️ python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: ⬇️ Python Poetry
uses: abatilo/actions-poetry@v2
with:
poetry-version: "1.7"
- name: ⬇️ Python Dependencies
run: poetry install
- name: 🚂 Activate environment
run: echo "$(poetry env info --path)/bin" >> $GITHUB_PATH
- name: 🏃 pytest
run: pytest -xv
# - name: 🏃 pytest
# run: coverage run -m pytest -v
# - name: 📊 coverage
# run: coverage report -m