-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (34 loc) · 969 Bytes
/
examples.yml
File metadata and controls
40 lines (34 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Examples
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
platformio:
name: PlatformIO (${{ matrix.environment }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
environment: [uno, esp32, pico]
steps:
- uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Cache PlatformIO core
uses: actions/cache@v4
with:
path: |
~/.platformio/.cache
~/.platformio/packages
~/.platformio/platforms
key: pio-${{ matrix.environment }}-${{ hashFiles('examples/platformio/platformio.ini') }}
- name: Install PlatformIO
run: pip install --upgrade platformio
- name: Build
working-directory: examples/platformio
run: pio run -e ${{ matrix.environment }}