Skip to content

277 repo migration

277 repo migration #1

Workflow file for this run

name: Unit Tests with Pytest
on: [pull_request]
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v3
with:
python-version: '3.11'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -e ".[test]"
- name: Run unit tests
run: |
pytest -vv --gherkin-terminal-reporter unity-test/unit