summaryrefslogtreecommitdiff
path: root/.github/workflows/cpp_lint.yml
diff options
context:
space:
mode:
authorLoïc Blot <nerzhul@users.noreply.github.com>2020-04-20 20:18:40 +0200
committerGitHub <noreply@github.com>2020-04-20 20:18:40 +0200
commit27a485a472706bededf38f0de2630688739ca0b2 (patch)
treea9eebf3c383e68d5856eddf1c608a427f2d7445b /.github/workflows/cpp_lint.yml
parent338195ff250bd7552ef8167348de2eb05e421c29 (diff)
downloadminetest-27a485a472706bededf38f0de2630688739ca0b2.tar.gz
minetest-27a485a472706bededf38f0de2630688739ca0b2.tar.bz2
minetest-27a485a472706bededf38f0de2630688739ca0b2.zip
Replace travis with github actions (#9641)
* Move outside of travis to Github actions This will permit to have better integrated CI workflow than the previous travis one.
Diffstat (limited to '.github/workflows/cpp_lint.yml')
-rw-r--r--.github/workflows/cpp_lint.yml53
1 files changed, 53 insertions, 0 deletions
diff --git a/.github/workflows/cpp_lint.yml b/.github/workflows/cpp_lint.yml
new file mode 100644
index 000000000..3044d5186
--- /dev/null
+++ b/.github/workflows/cpp_lint.yml
@@ -0,0 +1,53 @@
+name: cpp_lint
+
+# lint on c/cpp changes or workflow changes
+on:
+ push:
+ paths:
+ - 'lib/**.[ch]'
+ - 'lib/**.cpp'
+ - 'src/**.[ch]'
+ - 'src/**.cpp'
+ - '**/CMakeLists.txt'
+ - 'cmake/Modules/**'
+ - 'util/ci/**'
+ - '.github/workflows/**.yml'
+ pull_request:
+ paths:
+ - 'lib/**.[ch]'
+ - 'lib/**.cpp'
+ - 'src/**.[ch]'
+ - 'src/**.cpp'
+ - '**/CMakeLists.txt'
+ - 'cmake/Modules/**'
+ - 'util/ci/**'
+ - '.github/workflows/**.yml'
+
+jobs:
+ clang_format:
+ runs-on: ubuntu-18.04
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install clang-format
+ run: |
+ sudo apt-get install ${CLANG_FORMAT} -qyy
+ env:
+ CLANG_FORMAT: clang-format-9
+ - name: Run clang-format
+ run: |
+ source ./util/ci/lint.sh
+ perform_lint
+
+ clang_tidy:
+ runs-on: ubuntu-18.04
+ steps:
+ - uses: actions/checkout@v2
+ - name: Install clang-tidy
+ run: |
+ sudo apt-get install clang-tidy-9 -qyy
+ source ./util/ci/common.sh
+ install_linux_deps
+
+ - name: Run clang-tidy
+ run: |
+ ./util/ci/clang-tidy.sh