🧑💻 Add validate-pins workflow for PRs #2
Workflow file for this run
This file contains 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
# | |
# ci-validate-pins.yml | |
# Validate that all of the pins files are unchanged by pinsformat.py | |
# | |
name: CI - Validate Pins Files | |
on: | |
pull_request: | |
branches: | |
- bugfix-2.1.x | |
# Cannot be enabled on 2.1.x until it contains the unit test framework | |
#- 2.1.x | |
paths-ignore: | |
- config/** | |
- data/** | |
- docs/** | |
- test/** | |
- Marlin/tests/** | |
- '**/*.md' | |
push: | |
branches: | |
- bugfix-2.1.x | |
# Cannot be enabled on 2.1.x until it contains the unit test framework | |
#- 2.1.x | |
paths-ignore: | |
- config/** | |
- data/** | |
- docs/** | |
- test/** | |
- Marlin/tests/** | |
- '**/*.md' | |
jobs: | |
# This runs all unit tests as a single job. While it should be possible to break this up into | |
# multiple jobs, they currently run quickly and finish long before the compilation tests. | |
validate_pins_files: | |
name: Validate Pins Files | |
# These tests will only be able to run on the bugfix-2.1.x branch, until the next release | |
# pulls them into additional branches. | |
if: github.repository == 'MarlinFirmware/Marlin' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the PR | |
uses: actions/checkout@v4 | |
- name: Cache pip | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }} | |
restore-keys: | | |
${{ runner.os }}-pip- | |
- name: Select Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
architecture: 'x64' | |
- name: Validate all pins files | |
run: | | |
make validate-pins -j |