Merge pull request #13 from stateforward/codex/completion-origin-event #90
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: quality_gates | |
| on: | |
| push: | |
| pull_request: | |
| permissions: | |
| contents: read | |
| jobs: | |
| quality_gates: | |
| name: Quality gates | |
| runs-on: ubuntu-latest | |
| env: | |
| CXX: clang++ | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| clang \ | |
| clang-format \ | |
| clang-tidy \ | |
| llvm \ | |
| cmake \ | |
| libboost-dev \ | |
| gcovr \ | |
| lcov \ | |
| ninja-build \ | |
| python3 | |
| - name: Run quality gates | |
| run: | | |
| ./scripts/quality_gates.sh |