Skip to content

Expand list of known workstation states #9

Expand list of known workstation states

Expand list of known workstation states #9

Workflow file for this run

name: Tests
on:
push:
branches: '*'
pull_request:
branches: '*'
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v1
with:
version: "latest"
- name: Test with Python ${{ matrix.python-version }}
run: |
uv run --python ${{ matrix.python-version }} pytest tests
- name: Ruff
run: |
uvx ruff check
uvx ruff format --check
- name: Test build
run: uv build