Skip to content

Unit tests triggered by dependabot[bot] #71

Unit tests triggered by dependabot[bot]

Unit tests triggered by dependabot[bot] #71

Workflow file for this run

name: Unit Tests
run-name: Unit tests triggered by ${{ github.actor }}
on: [pull_request, workflow_dispatch]
jobs:
unit-tests-and-formatting:
runs-on: windows-latest
steps:
- name: 🛎️ Check out repository
uses: actions/checkout@v3
- name: 📦 Set up Poetry
run: pipx install poetry==1.5.1
- name: 🐍 Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
cache: poetry
- name: 🔨 Install dependencies
run: poetry install --with test
- name: ✅ Run unit tests
run: poetry run pytest