* OESS-98 fix tools test for plugins * sync fork * Merge of changes from dev * Move problem option to bottom of the list until fixed * HDFFV-11106 - fix parsing optional args * HDFFV-11106 add note * grammer fix * Whitespace after clang formatting * Undo format version 11 changes * Update check to working version * Merge workflow and minor changes from develop * Update supported platforms * PR#3 merge from develop * Merge gcc 10 diagnostics option from develop * Merge #318 OSX changes from develop * Merge serval small changes from dev * fix typo * Minor non-space formatting changes * GH #386 copyright corrections for java folder * revert because logic requires false return * Merges from develop #358 patches from vtk #361 fix header guard spelling * Remove case statement for H5I_EVENTSET * Correct call with versioning * Remove tabs * Double underscore change * Merges from develop #340 clang -Wformat-security warnings #360 Fixed uninitialized warnings Remove more underscores from header guards * Merge #380 from develop * Correct date entry * Split format source and commit changes on repo push * remove pre-split setting * Change windows TS to use older VS.
26 lines
908 B
YAML
26 lines
908 B
YAML
name: clang-format Check
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
jobs:
|
|
formatting-check:
|
|
name: Formatting Check
|
|
runs-on: ubuntu-latest
|
|
if: "!contains(github.event.head_commit.message, 'skip-ci')"
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Run clang-format style check for C programs.
|
|
uses: DoozyX/clang-format-lint-action@v0.11
|
|
with:
|
|
source: '.'
|
|
extensions: 'c,h,cpp,hpp'
|
|
clangFormatVersion: 10
|
|
inplace: True
|
|
style: file
|
|
exclude: './config ./hl/src/H5LTanalyze.c ./hl/src/H5LTparse.c ./hl/src/H5LTparse.h ./src/H5Epubgen.h ./src/H5Einit.h ./src/H5Eterm.h ./src/H5Edefin.h ./src/H5version.h ./src/H5overflow.h'
|
|
- uses: EndBug/add-and-commit@v7
|
|
with:
|
|
author_name: github-actions
|
|
author_email: 41898282+github-actions[bot]@users.noreply.github.com
|
|
message: 'Committing clang-format changes'
|