File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : CodeQL
2+
3+ on :
4+ push :
5+ branches : [main, "version-*"]
6+ pull_request :
7+ branches : [main, "version-*"]
8+ schedule :
9+ - cron : " 0 0 * * *"
10+
11+ jobs :
12+ analyze :
13+ name : Analyze
14+ runs-on : ubuntu-latest
15+ permissions :
16+ security-events : write
17+ packages : read
18+ actions : read
19+ contents : read
20+
21+ strategy :
22+ fail-fast : false
23+ matrix :
24+ include :
25+ - language : actions
26+ build-mode : none
27+ - language : python
28+ build-mode : none
29+
30+ steps :
31+ - name : Checkout repository
32+ uses : actions/checkout@v4
33+
34+ - name : Initialize CodeQL
35+ uses : github/codeql-action/init@v3
36+ with :
37+ languages : ${{ matrix.language }}
38+ build-mode : ${{ matrix.build-mode }}
39+
40+ - name : Perform CodeQL Analysis
41+ uses : github/codeql-action/analyze@v3
42+ with :
43+ category : " /language:${{matrix.language}}"
Original file line number Diff line number Diff line change 44 release :
55 types : [published]
66
7+ permissions :
8+ contents : read
9+ pull-requests : write
10+
711jobs :
812 pypi-publish :
913 name : Upload release to PyPI
Original file line number Diff line number Diff line change 1414 # Run nightly to check that tests are working with latest dependencies
1515 - cron : " 0 0 * * *"
1616
17+ permissions :
18+ contents : read
19+ pull-requests : write
20+
1721jobs :
1822 check-runrms :
1923 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments