fdad3fc985
Also fix issue where workflow fails on pull requests when the user who made the pull request doesn't have the secrets set. Also allow other workflows to be triggered manually. Also don't trigger any workflows on pull requests to master, as there shouldn't be any pull requests against master.
38 lines
774 B
YAML
38 lines
774 B
YAML
name: Code formatting
|
|
|
|
on:
|
|
pull_request:
|
|
branches: [ develop ]
|
|
paths:
|
|
- '**.cpp'
|
|
- '**.h'
|
|
- '!src/libs/**'
|
|
- '!src/FreeRTOS/**'
|
|
|
|
jobs:
|
|
test-format:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1000
|
|
|
|
- name: Configure git
|
|
run: |
|
|
git fetch origin "$GITHUB_BASE_REF":"$GITHUB_BASE_REF" --depth=1000
|
|
|
|
- name: Install clang-format
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get -y install clang-format-12
|
|
|
|
- name: Check formatting
|
|
run: tests/test-format.sh
|
|
|
|
- name: Upload patches
|
|
uses: actions/upload-artifact@v3
|
|
if: failure()
|
|
with:
|
|
name: Patches
|
|
path: ./*.patch
|