Skip to content

Run Tests 🧪

Run Tests 🧪 #23

Workflow file for this run

name: Test
run-name: Run Tests 🧪
on:
push:
branches:
- 'fix/**'
- 'task/**'
jobs:
Run-Tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.12" ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install poetry
run: pipx install poetry
- name: Set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: poetry install
- name: Run tests
run: poetry run pytest