File tree Expand file tree Collapse file tree 1 file changed +38
-0
lines changed
Expand file tree Collapse file tree 1 file changed +38
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " CodeQL"
2+
3+ on :
4+ push :
5+ branches : [ main ]
6+ pull_request :
7+ # The branches below must be a subset of the branches above
8+ branches : [ main ]
9+
10+ jobs :
11+ analyze :
12+ name : Analyze
13+ runs-on : ubuntu-latest
14+ permissions :
15+ actions : read
16+ contents : read
17+ security-events : write
18+
19+ strategy :
20+ fail-fast : false
21+ matrix :
22+ language : [ 'cpp' ]
23+ steps :
24+ - name : Checkout repository
25+ uses : actions/checkout@v2
26+
27+ - name : Initialize CodeQL
28+ uses : github/codeql-action/init@v2
29+ with :
30+ languages : ${{ matrix.language }}
31+
32+ - name : Build dd-trace-cpp
33+ run : |
34+ bin/install-cmake
35+ bin/cmake-build
36+
37+ - name : Perform CodeQL Analysis
38+ uses : github/codeql-action/analyze@v2
You can’t perform that action at this time.
0 commit comments