diff options
author | rubenwardy <rw@rubenwardy.com> | 2021-01-23 23:48:22 +0000 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2021-03-01 12:12:52 +0100 |
commit | ccdaf5de54108990fcdeb0b0ff4a4fc4cd998522 (patch) | |
tree | cfb2eb5b560bcdc955df7e618e25b828924ea927 /.github/workflows | |
parent | b390bd2ea5c40cb96af1699a6a18f59dcdb1495b (diff) | |
download | minetest-ccdaf5de54108990fcdeb0b0ff4a4fc4cd998522.tar.gz minetest-ccdaf5de54108990fcdeb0b0ff4a4fc4cd998522.tar.bz2 minetest-ccdaf5de54108990fcdeb0b0ff4a4fc4cd998522.zip |
Disable clang-format, clean up scripts
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cpp_lint.yml | 27 |
1 files changed, 14 insertions, 13 deletions
diff --git a/.github/workflows/cpp_lint.yml b/.github/workflows/cpp_lint.yml index 1f97d105a..2bd884c7a 100644 --- a/.github/workflows/cpp_lint.yml +++ b/.github/workflows/cpp_lint.yml @@ -24,20 +24,21 @@ on: - '.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-9 -qyy - - name: Run clang-format - run: | - source ./util/ci/lint.sh - perform_lint - env: - CLANG_FORMAT: clang-format-9 +# clang_format: +# runs-on: ubuntu-18.04 +# steps: +# - uses: actions/checkout@v2 +# - name: Install clang-format +# run: | +# sudo apt-get install clang-format-9 -qyy +# +# - name: Run clang-format +# run: | +# source ./util/ci/clang-format.sh +# check_format +# env: +# CLANG_FORMAT: clang-format-9 clang_tidy: runs-on: ubuntu-18.04 |