Skip to content

Add SlvCtrl protocol: Platform.io version #3

Add SlvCtrl protocol: Platform.io version

Add SlvCtrl protocol: Platform.io version #3

Workflow file for this run

name: build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
platformio:
runs-on: ubuntu-latest
strategy:
matrix:
env:
- teensy40
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Cache PlatformIO
uses: actions/cache@v4
with:
path: |
~/.platformio
~/.cache/pip
key: ${{ runner.os }}-pio-${{ hashFiles('**/platformio.ini', '**/library.json') }}
restore-keys: |
${{ runner.os }}-pio-
- name: Install PlatformIO
run: pip install -U platformio
- name: Build example (${{ matrix.env }})
run: |
cd nogasm_code
platformio run -e ${{ matrix.env }}