Trying out GitHub code scanning

This commit is contained in:
Jordan Brown
2020-09-25 11:09:53 -04:00
committed by GitHub
parent a8266d0454
commit 77048c5b62
+42
View File
@@ -0,0 +1,42 @@
name: "Code Scanning"
on:
push:
branches: [dev, master]
pull_request:
branches: [dev, master]
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ['csharp']
steps:
- name: Install Node 12.X
uses: actions/setup-node@v1
with:
node-version: 12.x
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 2
- run: git checkout HEAD^2
if: ${{ github.event_name == 'pull_request' }}
- 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