Add Raspberry Pi 500's RP2040 board support Fixes #2640 #31
Workflow file for this run
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: Check Board Headers | |
on: | |
push: | |
paths: | |
- 'src/boards/include/boards/**' | |
- 'tools/check_board_header.py' | |
- 'tools/check_all_board_headers.sh' | |
- '.github/workflows/check_board.yml' | |
pull_request: | |
paths: | |
- 'src/boards/include/boards/**' | |
- 'tools/check_board_header.py' | |
- 'tools/check_all_board_headers.sh' | |
- '.github/workflows/check_board.yml' | |
jobs: | |
check-board-headers: | |
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 Board Headers | |
run: | | |
tools/check_all_board_headers.sh |