Skip to content

Manual workflow

Manual workflow #5

Workflow file for this run

name: Manual workflow
on: workflow_dispatch
jobs:
check:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.9"
- "3.10"
- "3.11"
- "3.12"
- "3.13"
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: python -m pip install --upgrade pip setuptools wheel
- run: python -m pip install poetry
- run: poetry install
- run: poetry run lssr -S tests/example_dir
- run: poetry run lssr -t tests/example_dir