Skip to content

Commit

Permalink
Create pio-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
edward62740 authored May 13, 2022
1 parent 5586539 commit 34806b7
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/pio-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: PIO CI


defaults:
run:
working-directory: "CPN ESP32"

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '0 1 * * 0'

jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
with:
cache: 'pip'
- name: Set up Python
uses: actions/setup-python@v1
with:
cache: 'pip'
- name: Install PlatformIO
run: |
python -m pip install --upgrade pip
pip install platformio
- name: Build CPN ESP32 FW
run: platformio run -e esp32dev

0 comments on commit 34806b7

Please sign in to comment.