Skip to content

fix: hidden import syntax on pyinstaller #77

fix: hidden import syntax on pyinstaller

fix: hidden import syntax on pyinstaller #77

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