Skip to content

SC-36908: Update build process to not sign on testing #68

SC-36908: Update build process to not sign on testing

SC-36908: Update build process to not sign on testing #68

Workflow file for this run

name: Unit Tests
on: pull_request
jobs:
unit-tests:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup 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