minetest/.github/workflows/cpp_lint.yml

44 lines
856 B
YAML
Raw Normal View History

name: cpp_lint
# lint on c/cpp changes or workflow changes
on:
push:
paths:
- 'lib/**.[ch]'
- 'lib/**.cpp'
- 'src/**.[ch]'
- 'src/**.cpp'
- 'irr/**.[ch]'
- 'irr/**.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'
2023-12-23 14:20:24 +01:00
env:
CLANG_TIDY: clang-tidy-15
jobs:
clang_tidy:
2023-12-23 14:20:24 +01:00
runs-on: ubuntu-22.04
steps:
2024-02-17 15:34:40 +01:00
- uses: actions/checkout@v4
- name: Install deps
run: |
source ./util/ci/common.sh
2023-12-23 14:20:24 +01:00
install_linux_deps $CLANG_TIDY
- name: Run clang-tidy
run: |
./util/ci/clang-tidy.sh