Skip to content

Merge pull request #16 from mlataza/chore/sc-36908/update-build-proce… #54

Merge pull request #16 from mlataza/chore/sc-36908/update-build-proce…

Merge pull request #16 from mlataza/chore/sc-36908/update-build-proce… #54

Workflow file for this run

name: Unit Tests
on:
push
jobs:
test:
runs-on: windows-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.12'
- name: Install Poetry
run: pip install poetry
- name: Install dependencies
run: poetry install --no-interaction
- name: Run tests
run: poetry run pytest