Merge branch 'main' of github.com:RoboticsBrno/2D-renderer-cpp #22
This file contains hidden or 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: ESP-IDF Build Check | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| branches: [ main ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Clone ESP32-HUB75-MatrixPanel-I2S-DMA component | |
| run: | | |
| git clone https://github.com/mrfaptastic/ESP32-HUB75-MatrixPanel-I2S-DMA.git components/ESP32-HUB75-MatrixPanel-I2S-DMA | |
| - name: Build with ESP-IDF | |
| uses: espressif/esp-idf-ci-action@v1 | |
| with: | |
| esp_idf_version: latest | |
| target: esp32s3 |