Skip to content

enable feedback step #127

enable feedback step

enable feedback step #127

Workflow file for this run

name: Pytest
on:
pull_request:
branches:
- main
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python 3.13
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Execute unit tests with pytest
run: |
pytest tests/unit/