Skip to content

Merge remote-tracking branch 'origin/main' into add-gpio-list #23

Merge remote-tracking branch 'origin/main' into add-gpio-list

Merge remote-tracking branch 'origin/main' into add-gpio-list #23

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- main
jobs:
test:
strategy:
matrix:
py: ["3.9", "3.10", "3.11", "3.12", "3.13"]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.py }}
- run: pip install hatch
- run: hatch run ruff format --check .
- run: hatch run ruff check .
- run: hatch run mypy .
- name: Run a Wokwi CI server
uses: wokwi/wokwi-ci-server-action@v1
- run: hatch run dev:pytest
env:
WOKWI_CLI_TOKEN: ${{ secrets.WOKWI_CLI_TOKEN }}