aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMario Campos <mario-campos@github.com>2020-11-21 11:49:52 -0600
committerGitHub <noreply@github.com>2020-11-21 11:49:52 -0600
commit2f00d05eae2277d00a777d27be763b606688ed03 (patch)
treeb1ae35d7e7a565a96714efac0c325fe59f0344fc
parent05bd1383c141e165f0e72a5dd2ec626376cf33a2 (diff)
Create codeql-analysis.yml
-rw-r--r--.github/workflows/codeql-analysis.yml34
1 files changed, 34 insertions, 0 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
new file mode 100644
index 000000000..5ad2c1636
--- /dev/null
+++ b/.github/workflows/codeql-analysis.yml
@@ -0,0 +1,34 @@
+name: "CodeQL"
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+ schedule:
+ - cron: '24 2 * * 4'
+
+jobs:
+ analyze:
+ name: Analyze
+ runs-on: ubuntu-latest
+
+ strategy:
+ fail-fast: false
+ matrix:
+ language: [ 'csharp' ]
+
+ steps:
+ - name: Checkout repository
+ uses: actions/checkout@v2
+
+ - name: Initialize CodeQL
+ uses: github/codeql-action/init@v1
+ with:
+ languages: ${{ matrix.language }}
+
+ - name: Autobuild
+ uses: github/codeql-action/autobuild@v1
+
+ - name: Perform CodeQL Analysis
+ uses: github/codeql-action/analyze@v1