Skip to content

Bump version: 1.9.2 → 1.9.3 #75

Bump version: 1.9.2 → 1.9.3

Bump version: 1.9.2 → 1.9.3 #75

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
python-version: ["3.14"]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- name: Run pytest tests
# sudo required to write to uinputs
run: |
sudo python -m pip install pytest setuptools
sudo python -m pip install -e .
sudo python -m pytest tests