ci: use multi-runner stack #4
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: Clang Diff Format Check | |
on: | |
pull_request: | |
branches: | |
- develop | |
jobs: | |
ClangFormat: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Fetch git | |
run: git fetch | |
- name: Run Clang-Format-Diff.py | |
run: git diff -U0 origin/develop | ./contrib/devtools/clang-format-diff.py -p1 | |