mirror of
https://github.com/minetest/minetest.git
synced 2024-11-05 07:13:46 +01:00
39 lines
780 B
YAML
39 lines
780 B
YAML
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_tidy:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install deps
|
|
run: |
|
|
source ./util/ci/common.sh
|
|
install_linux_deps clang-tidy-9
|
|
|
|
- name: Run clang-tidy
|
|
run: |
|
|
./util/ci/clang-tidy.sh
|