diff options
author | Martin Braun <martin.braun@ettus.com> | 2020-01-09 12:27:50 -0800 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-10 19:21:38 -0800 |
commit | 4fd06de424850a0b70f6e8e959edcda9fe01f060 (patch) | |
tree | 935bd6da97b1587bdf9ac34284f2cee045177d2e | |
parent | cb19102d3854e1acb40f16839d9bd78a8b086d7b (diff) |
ci: Fix formatting GitHub action to properly check paths
-rw-r--r-- | .github/workflows/check-pr-formatting.yml | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/.github/workflows/check-pr-formatting.yml b/.github/workflows/check-pr-formatting.yml index 681ead7805..ae47e85c1b 100644 --- a/.github/workflows/check-pr-formatting.yml +++ b/.github/workflows/check-pr-formatting.yml @@ -2,8 +2,8 @@ name: Check PR Formatting on: pull_request: - paths: - - '!volk/' + paths-ignore: + - 'volk/' jobs: build: @@ -11,9 +11,8 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: gnuradio/clang-format-lint-action@v0.5-1 + - uses: gnuradio/clang-format-lint-action@v0.5-4 with: source: '.' exclude: './volk' extensions: 'h,hpp,cpp,cc' - clangFormatVersion: 7 |