Skip to content

Commit db5231a

Browse files
Add CodeSQL actions workflow (#142)
1 parent ede7322 commit db5231a

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "CodeQL analysis"
2+
3+
on:
4+
push:
5+
schedule:
6+
- cron: '0 0 * * 0'
7+
8+
jobs:
9+
codeql:
10+
11+
strategy:
12+
fail-fast: false
13+
14+
runs-on: ubuntu-latest # windows-latest and ubuntu-latest are supported. macos-latest is not supported at this time.
15+
16+
steps:
17+
- name: Checkout repository
18+
uses: actions/checkout@v2
19+
20+
- name: Initialize CodeQL
21+
uses: github/codeql-action/init@v1
22+
23+
- name: Perform CodeQL Analysis
24+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)