File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed
Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " Code scanning - action"
2+
3+ on :
4+ push :
5+ pull_request :
6+ schedule :
7+ - cron : ' 0 11 * * 6'
8+
9+ jobs :
10+ CodeQL-Build :
11+
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - name : Checkout repository
16+ uses : actions/checkout@v2
17+ with :
18+ # We must fetch at least the immediate parents so that if this is
19+ # a pull request then we can checkout the head.
20+ fetch-depth : 2
21+
22+ # If this run was triggered by a pull request event, then checkout
23+ # the head of the pull request instead of the merge commit.
24+ - run : git checkout HEAD^2
25+ if : ${{ github.event_name == 'pull_request' }}
26+
27+ # Initializes the CodeQL tools for scanning.
28+ - name : Initialize CodeQL
29+ uses : github/codeql-action/init@v1
30+ with :
31+ languages : python
32+
33+ - name : Perform CodeQL Analysis
34+ uses : github/codeql-action/analyze@v1
You can’t perform that action at this time.
0 commit comments