mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 12:32:48 +01:00
20eb13616a
Signed-off-by: pasta <pasta@dashboost.org>
18 lines
371 B
YAML
18 lines
371 B
YAML
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
|
|
|