Skip to content

Commit

Permalink
Added arduino CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
qfisch committed Feb 27, 2024
1 parent 2af096a commit 4f01136
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/arduino.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Arduino Lib

on:
pull_request:
branches:
- master
push:
branches:
- master

jobs:
arduino-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update

arduino-ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: Arduino-CI/[email protected]
env:
EXPECT_EXAMPLES: true

0 comments on commit 4f01136

Please sign in to comment.