mirror of
https://github.com/raspberrypi/pico-sdk.git
synced 2026-03-14 21:19:43 +01:00
* 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
33 lines
764 B
YAML
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 .
|