Skip to content

ci: fix

ci: fix #112

Workflow file for this run

name: PlatformIO Unit Tests
on: [push]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: "3.9"
- name: Install PlatformIO Core
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Run Tests on the Desktop Environment
run: platformio test -e desktop