mirror of
https://github.com/dashpay/dash.git
synced 2024-12-26 04:22:55 +01:00
d574ca6197
## Issue being fixed or feature implemented Should fix warnings like > The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2, actions/cache@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/ https://github.com/dashpay/dash/actions/runs/5705358251?pr=5448 https://github.com/dashpay/dash/actions/runs/5705358315?pr=5448 https://github.com/dashpay/dash/actions/runs/5705358316?pr=5448 https://github.com/dashpay/dash/actions/runs/5715249078?pr=5448 ## What was done? ## How Has This Been Tested? ## Breaking Changes ## Checklist: - [x] I have performed a self-review of my own code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have added or updated relevant unit/integration/functional/e2e tests - [ ] I have made corresponding changes to the documentation - [x] I have assigned this pull request to a milestone
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@v3
|
|
- 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
|
|
|