Create arduinoBuild.yml
This commit is contained in:
parent
8ed82dda2f
commit
7a0779f810
1 changed files with 19 additions and 0 deletions
19
.github/workflows/arduinoBuild.yml
vendored
Normal file
19
.github/workflows/arduinoBuild.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
|||
name: Arduino Build
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ master ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Run arduino-builder
|
||||
uses: Legion2/arduino-builder-action@v2.0.0
|
||||
with:
|
||||
sketch: ./Arduino/ArduinoRelayControl.ino
|
Reference in a new issue