Added Servo Demo, Updated Sensor Bias Example and minor fixes #43
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Arduino-lint | |
on: | |
[push, pull_request] | |
jobs: | |
lint: | |
name: Lint Arduino Code | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- name: Checkout Code | |
uses: actions/checkout@v2 | |
- name: Run Arduino Lint | |
uses: arduino/arduino-lint-action@v1 | |
with: | |
library-manager: update | |
recursive: true |