pico-sdk/.github/workflows/check_configs.yml
will-v-pi 287196517b
Add config check action (#2525)
* Add action to check configs & defines

* Check for all errors before exiting scripts

* Add extract_cmake_functions to the checks

* Fix invalid escape sequence warning
2025-06-18 10:18:25 -05:00

33 lines
764 B
YAML

name: Check Configs
on:
push:
pull_request:
jobs:
check-configs:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Check Build Defines
if: always()
run: |
tools/extract_build_defines.py .
- name: Check CMake Configs
if: always()
run: |
tools/extract_cmake_configs.py .
- name: Check CMake Functions
if: always()
run: |
tools/extract_cmake_functions.py .
- name: Check Configs
if: always()
run: |
tools/extract_configs.py .