Update documentation to change PROF_ to VERNIER_ for env variables #24
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: Format Check | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
check: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Check style with clang-format | |
# Use clang-format to check all C++ files for code style errors. | |
# The .clang-format file was created using clang-format 16, not all | |
# checks are available in earlier versions so the --Wno-error=unknown flag | |
# is used. Users should use clang-format 16 or later if possible. | |
run: > | |
find ${{github.workspace}} -iname '*.cpp' -o -iname '*.h' | xargs | |
clang-format --dry-run --Werror --Wno-error=unknown 2>&1 |