Merge pull request #2213 from fpistm/STM32CubeF4_update #401
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@main | |
- name: Astyle check | |
id: Astyle | |
uses: stm32duino/actions/astyle-check@main | |
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 |