Skip to content

Commit

Permalink
Create pio-build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RodrigoMoraes98 authored Apr 5, 2024
1 parent c25da89 commit 52735a0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/pio-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: pio-build
on:
push:
branches: master
jobs:
build:
name: build files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: true
token: ${{ sectrets.PAT_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

0 comments on commit 52735a0

Please sign in to comment.