Skip to content

documentation fix

documentation fix #5

Workflow file for this run

name: Test package
on: push
jobs:
test:
name: Exeute Tests
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- "3.11"
- "3.12"
- "3.13"
- "3.14"
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Setup UV
uses: astral-sh/setup-uv@v7.6.0
with:
version: 0.11.2
python-version: ${{ matrix.python-version}}
- name: install project
run: uv sync --dev
- name: run Test
run: uv run robot test/atest.robot