41b9117307
Without these names, the checks just appear as "build" in the actions (example: https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-DMA/pull/475 Click on "View Details" next to the merge message)
33 lines
744 B
YAML
33 lines
744 B
YAML
name: esp-idf without Adafruit GFX Library
|
|
|
|
on:
|
|
push:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'doc/**'
|
|
pull_request:
|
|
paths-ignore:
|
|
- '**.md'
|
|
- 'doc/**'
|
|
|
|
jobs:
|
|
build:
|
|
name: esp-idf without Adafruit GFX
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repo
|
|
uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'recursive'
|
|
- name: Checkout ESP32-HUB75-MatrixPanel-I2S-DMA component
|
|
uses: actions/checkout@v3
|
|
with:
|
|
path: 'examples/esp-idf/without-gfx/components/ESP32-HUB75-MatrixPanel-I2S-DMA'
|
|
- name: esp-idf build
|
|
uses: espressif/esp-idf-ci-action@v1
|
|
with:
|
|
esp_idf_version: v4.4
|
|
target: esp32
|
|
path: 'examples/esp-idf/without-gfx'
|