Skip to content

Commit

Permalink
Add arduino lint workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
stnkl committed Apr 29, 2022
1 parent 940b87e commit 4635874
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/arduino_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name: Arduino lint

on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build library

on: [push]
on: [push, pull_request]

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_examples.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Build examples

on: [push]
on: [push, pull_request]

jobs:
build:
Expand Down

0 comments on commit 4635874

Please sign in to comment.