Skip to content

Update pio-build.yml #4

Update pio-build.yml

Update pio-build.yml #4

Workflow file for this run

name: build-project
on:
push:
branches: master
jobs:
build:
name: build files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ github.token }}
- uses: actions/cache@v4
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Install PlatformIO Core
run: pip install platformio
- name: Build project
run: pio run