Skip to content

Update CODEOWNERS #1235

Update CODEOWNERS

Update CODEOWNERS #1235

Workflow file for this run

name: "CodeQL"
on:
push:
branches: '**'
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '0 0 * * 0'
jobs:
analyze:
name: Analyze
runs-on: windows-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: csharp
- run: |
.\BuildAndTest.cmd -NoFormat -NoTest
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1