Skip to content

Commit

Permalink
Update build.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
lmarzen authored Mar 4, 2023
1 parent f8aa414 commit c53d6fc
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,12 @@ on:

jobs:
build:
runs-on: ubuntu-latest

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
locations: [platformio]

steps:
- uses: actions/checkout@v3
Expand All @@ -25,4 +30,4 @@ jobs:
run: pip install --upgrade platformio

- name: Build PlatformIO Project
run: pio run
run: pio run -d ${{ matrix.locations }}

0 comments on commit c53d6fc

Please sign in to comment.