Skip to content

CI: Fix wrong path in install #4

CI: Fix wrong path in install

CI: Fix wrong path in install #4

Workflow file for this run

name: Run tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Install OS dependencies
run: sudo add-apt-repository universe
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install MicroPython
uses: BrianPugh/install-micropython@v2
with:
reference: v1.24.1
- name: Install firmware dependencies
run: bash -xe install_unix.sh
- name: Install Python dependencies
run: pip install -r requirements.txt
- name: Run firmware tests
run: micropython firmware/test_toothbrush.py