Skip to content

GUI - basic design #145

GUI - basic design

GUI - basic design #145

Workflow file for this run

name: Test and build
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
jobs:
test:
runs-on: ${{matrix.os}}
strategy:
fail-fast: false
matrix:
os: [windows-latest, ubuntu-latest, macos-latest]
python-version: ["3.12.3"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{matrix.python-version}}
- name: Show Python Version
run: python --version
- name: Install Poetry
uses: abatilo/[email protected]
with:
poetry-version: 1.2.2
- name: Install dependencies
run: poetry install
- name: Install PySide6
run: poetry add PySide6
- name: Debug Poetry Environment
run: poetry env list
- name: Run tests
run: poetry run pytest