Skip to content

Put all hotkey commands behind sys.platform == "win32" checks. #15

Put all hotkey commands behind sys.platform == "win32" checks.

Put all hotkey commands behind sys.platform == "win32" checks. #15

Workflow file for this run

name: UnitTests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test-splitguides:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest]
python-version: ["3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[testing]
- name: Test with pytest
run: |
pytest tests/