Enable asserts in release build when testing menu is enabled (#1497) #611
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: Verify clang-format | |
# on: | |
# pull_request: | |
# paths-ignore: | |
# - src/art_src | |
# - src/tests | |
# - src/xml | |
# - src/import/rapidjson | |
# - tests | |
# - docs | |
# - import_tests | |
# - .github | |
# workflow_dispatch: | |
jobs: | |
clangFormat: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DoozyX/clang-format-lint-action@v0.18 | |
with: | |
source: './src' | |
exclude: file | |
extensions: 'h,cpp' | |
clangFormatVersion: 18 | |
style: file |