Define generic boards for STM32L051K8U and -T #593
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
name: Check code formatting with astyle | |
on: | |
push: | |
branches: | |
- main | |
paths-ignore: | |
- '*.json' | |
- '**.md' | |
- keywords.txt | |
- CI/** | |
- '!CI/astyle/.astyleignore' | |
- '!CI/astyle/.astylerc' | |
- '!CI/astyle/astyle.py' | |
- tools/** | |
pull_request: | |
paths-ignore: | |
- '*.json' | |
- '**.md' | |
- keywords.txt | |
- CI/** | |
- '!CI/astyle/.astyleignore' | |
- '!CI/astyle/.astylerc' | |
- '!CI/astyle/astyle.py' | |
- tools/** | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
astyle_check: | |
runs-on: ubuntu-latest | |
name: Check for astyle errors | |
steps: | |
# First of all, clone the repo using the checkout action. | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Astyle check | |
id: Astyle | |
uses: stm32duino/actions/astyle-check@v1 | |
with: | |
astyle-definition: 'CI/astyle/.astylerc' | |
ignore-path-list: 'CI/astyle/.astyleignore' | |
# Use the output from the `Astyle` step | |
- name: Astyle Errors | |
if: failure() | |
run: | | |
cat ${{ steps.Astyle.outputs.astyle-result }} | |
exit 1 |