Formatting and structure cleanup #2
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Lint | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize] | |
jobs: | |
clang-tidy-checking: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Clang Tidy | |
run: sudo apt install -y clang-tidy | |
shell: bash | |
- name: Run Clang Tidy | |
run: clang-tidy --config-file=.clang-tidy src/**/*.cpp src/**/*.h src/*.cpp # missing Main.cpp |