初始化提交
This commit is contained in:
32
arduino-cli/libraries/M5Core2-master/.github/workflows/LibraryBuild.yml
vendored
Normal file
32
arduino-cli/libraries/M5Core2-master/.github/workflows/LibraryBuild.yml
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
name: LibraryBuild
|
||||
on:
|
||||
push: # see: https://help.github.com/en/actions/reference/events-that-trigger-workflows#pull-request-event-pull_request
|
||||
paths:
|
||||
- '**.ino'
|
||||
- '**.cpp'
|
||||
- '**.h'
|
||||
- '**LibraryBuild.yml'
|
||||
pull_request:
|
||||
paths:
|
||||
- '**.ino'
|
||||
- '**.cpp'
|
||||
- '**.h'
|
||||
- '**LibraryBuild.yml'
|
||||
jobs:
|
||||
build:
|
||||
name: Test compiling Basic examples for M5stack-Core2
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
|
||||
- name: Compile all examples
|
||||
uses: ArminJo/arduino-test-compile@v3
|
||||
with:
|
||||
arduino-board-fqbn: esp32:esp32:m5stack-core2
|
||||
platform-url: https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/package_esp32_dev_index.json
|
||||
sketch-names-find-start: examples/Basics/
|
||||
sketches-exclude: mpu6886
|
||||
Reference in New Issue
Block a user