diff options
| author | Pheenoh <pheenoh@gmail.com> | 2021-01-31 20:49:35 -0500 |
|---|---|---|
| committer | Pheenoh <pheenoh@gmail.com> | 2021-01-31 20:49:35 -0500 |
| commit | ff68771d3204860cfaed1d066ac02aa56a6faf83 (patch) | |
| tree | ff03a6b212a464366e2184572971db634fd8044f /.github | |
| parent | 24d529f67b310b50ac1ee22ffb6e1e06645985d9 (diff) | |
fix clang-format check
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/clang-format-check.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/clang-format-check.yml b/.github/workflows/clang-format-check.yml index 789f7ca5c9..5cc17399d8 100644 --- a/.github/workflows/clang-format-check.yml +++ b/.github/workflows/clang-format-check.yml @@ -8,8 +8,8 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: DoozyX/clang-format-lint-action@v0.11 - with: - source: '.' - extensions: 'h,cpp' - clangFormatVersion: 11
\ No newline at end of file + - name: Install clang-format + run: sudo apt-get install clang-format-10 + - name: Run clang-format-check + run: sh tools/clang-format-check.sh +
\ No newline at end of file |
