Skip to content

Commit

Permalink
test: only run windows
Browse files Browse the repository at this point in the history
  • Loading branch information
GwnDaan committed Nov 21, 2023
1 parent 20afb84 commit 5a11091
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/pio.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: PlatformIO CI

on: [push]

jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest]
example: [examples/virtual_terminal/esp32_platformio_object_pool]

steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/pip
~/.platformio/.cache
key: ${{ runner.os }}-pio
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Install PlatformIO Core
run: pip install --upgrade platformio
# - name: Install AgIsoStack library in PlatformIO
# run: pio pkg install -g -l ./
- name: Build PlatformIO examples
run: pio run -d ${{ matrix.example }} -e local_agisostack

0 comments on commit 5a11091

Please sign in to comment.