This commit is contained in:
peter-villadsen 2022-02-25 15:49:42 -08:00
Родитель a73d5f0b83
Коммит ba030eb9b4
1 изменённых файлов: 44 добавлений и 0 удалений

44
.github/workflows/CodeQL.yml поставляемый Normal file
Просмотреть файл

@ -0,0 +1,44 @@
name: "CodeQL"
on:
push:
branches: [main]
paths:
- '**.cs'
- '**.csproj'
pull_request:
branches: [main]
paths:
- '**.cs'
- '**.csproj'
jobs:
analyze:
name: analyze
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
language: ['csharp']
steps:
- 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