Skip to content

Update README.md (#4) #7

Update README.md (#4)

Update README.md (#4) #7

Workflow file for this run

name: Library Tests
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
workflow_dispatch: # Allow manual triggers
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- name: Install system dependencies
run: |
sudo apt-get update
sudo apt-get install -y build-essential
sudo apt-get install -y libmbedtls-dev
sudo apt-get install -y cmake
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Run Tests
run: |
pio test -e native -v