summaryrefslogtreecommitdiff
path: root/.github/workflows/cpp_lint.yml
diff options
context:
space:
mode:
authorsfan5 <sfan5@live.de>2020-05-02 12:52:51 +0200
committerGitHub <noreply@github.com>2020-05-02 12:52:51 +0200
commit61d93988d8b44a9905451c4c288e02c04d41abb0 (patch)
treef0c20599ddc0e61e94e24521cd17851f9ed5d0d2 /.github/workflows/cpp_lint.yml
parente0ea87f1f32273dba2eb5421c2a8c890479ba078 (diff)
downloadminetest-61d93988d8b44a9905451c4c288e02c04d41abb0.tar.gz
minetest-61d93988d8b44a9905451c4c288e02c04d41abb0.tar.bz2
minetest-61d93988d8b44a9905451c4c288e02c04d41abb0.zip
ci: Update Github Actions workflows (#9774)
Diffstat (limited to '.github/workflows/cpp_lint.yml')
-rw-r--r--.github/workflows/cpp_lint.yml9
1 files changed, 5 insertions, 4 deletions
diff --git a/.github/workflows/cpp_lint.yml b/.github/workflows/cpp_lint.yml
index 3044d5186..1f97d105a 100644
--- a/.github/workflows/cpp_lint.yml
+++ b/.github/workflows/cpp_lint.yml
@@ -30,19 +30,20 @@ jobs:
- uses: actions/checkout@v2
- name: Install clang-format
run: |
- sudo apt-get install ${CLANG_FORMAT} -qyy
- env:
- CLANG_FORMAT: clang-format-9
+ 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_tidy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@v2
- - name: Install clang-tidy
+ - name: Install deps
run: |
sudo apt-get install clang-tidy-9 -qyy
source ./util/ci/common.sh