Add weekly automated check for outdated third-party test vectors #2773
Workflow file for this run
This file contains hidden or 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: clang-tidy-review | |
| on: [pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-go@v4 | |
| with: | |
| go-version: '>=1.18' | |
| - uses: ZedThree/[email protected] | |
| with: | |
| split_workflow: true | |
| clang_tidy_version: 19 | |
| install_commands: /github/workspace/util/build_compilation_database.sh | |
| config_file: '/github/workspace/.clang-tidy' | |
| - uses: ZedThree/clang-tidy-review/[email protected] |