Skip to content

Adding Pinout

Adding Pinout #56

Workflow file for this run

name: Build and Lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Cache dependencies
uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.9"
- name: Install PlatformIO
run: pip install --upgrade platformio
- name: Lint
uses: jidicula/clang-format-action@v4.13.0
- name: Build
run: pio run
- name: Test native
run: pio test -e native