Config visibility report all sources and their values #935
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: "CodeQL" | |
| on: | |
| push: | |
| branches: [ main ] | |
| pull_request: | |
| # The branches below must be a subset of the branches above | |
| branches: [ main ] | |
| jobs: | |
| analyze: | |
| name: Analyze | |
| runs-on: ubuntu-latest | |
| permissions: | |
| actions: read | |
| contents: read | |
| security-events: write | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| language: [ 'cpp' ] | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0 | |
| - name: Initialize CodeQL | |
| uses: github/codeql-action/init@fe4161a26a8629af62121b670040955b330f9af2 # v3.29.5 | |
| with: | |
| languages: ${{ matrix.language }} | |
| - name: Install dependencies | |
| run: bin/install-cmake | |
| - name: Build dd-trace-cpp | |
| run: bin/cmake-build --preset=ci-codeql | |
| - name: Perform CodeQL Analysis | |
| uses: github/codeql-action/analyze@fe4161a26a8629af62121b670040955b330f9af2 # v3.29.5 |