mirror of
https://github.com/Mercantec-GHC/h5-projekt-mst.git
synced 2026-08-27 05:37:39 +02:00
28 lines
631 B
YAML
28 lines
631 B
YAML
name: Skateboard
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
paths: [ "skateboard/**" ]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
check:
|
|
name: Check
|
|
runs-on: ubuntu-latest
|
|
container: espressif/idf:release-v5.5
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- name: Build
|
|
shell: bash
|
|
working-directory: ./skateboard
|
|
# https://github.com/espressif/esp-bsp/blob/master/.github/workflows/build-run-applications.yml
|
|
run: |
|
|
export IDF_PYTHON_CHECK_CONSTRAINTS=yes
|
|
${IDF_PATH}/install.sh --enable-ci
|
|
source ${IDF_PATH}/export.sh
|
|
idf.py build
|
|
|