forked from chrisjoyce911/esp32FOTA
-
Notifications
You must be signed in to change notification settings - Fork 0
33 lines (28 loc) · 879 Bytes
/
arduino.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
name: Arduino Build
# The workflow will run on every push and pull request to the repository
on:
- push
- pull_request
jobs:
compile-sketch:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Compile examples
uses: arduino/compile-sketches@v1
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
fqbn: esp32:esp32:esp32
platforms: |
- name: esp32:esp32
source-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_index.json
libraries: |
- name: esp32FOTA
path: ./
- name: ArduinoJson
- name: ESP32-targz
#sketch-paths: |
#- examples/HTTP/HTTP/HTTP.ino
#cli-compile-flags: |
#- --warnings="none"