Skip to content

feat(ism330dl): Add maze game example with OLED and accelerometer. #714

feat(ism330dl): Add maze game example with OLED and accelerometer.

feat(ism330dl): Add maze game example with OLED and accelerometer. #714

Workflow file for this run

name: "🧪 Mock Tests"
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
permissions:
contents: read
jobs:
mock-tests:
runs-on: ubuntu-latest
steps:
- name: "⏳ Checkout repository"
uses: actions/checkout@v4
- name: "🐍 Set up Python"
uses: actions/setup-python@v5
with:
cache: "pip"
cache-dependency-path: pyproject.toml
python-version: "3.10"
- name: "🛠 Install dependencies"
run: python3 -m pip install -e ".[dev,test]"
- name: "🧪 Run mock tests"
run: make test-mock
- name: "📋 Validate examples"
run: make test-examples