Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2020-10-21 16:03:50 +0300
committerHannah von Reth <vonreth@kde.org>2020-10-21 16:14:51 +0300
commit3419d383165c3f1422b05ea3200a7ba1c182c52a (patch)
treec64fc5fb11fa643ce9b880cba30a177b38d83745 /.github
parent7728c011d5c4025ce594560687cb20ef455682c9 (diff)
Ci: Add clang format check
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/clang-format.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml
new file mode 100644
index 000000000..4845e8de7
--- /dev/null
+++ b/.github/workflows/clang-format.yml
@@ -0,0 +1,13 @@
+name: test-clang-format
+
+on: [push]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ fetch-depth: 2
+ - uses: yshui/git-clang-format-lint@master