Skip to content

Commit

Permalink
Add CodeQL (#774)
Browse files Browse the repository at this point in the history
Add a workflow to run CodeQL against the codebase.
  • Loading branch information
martincostello authored Jun 19, 2023
1 parent e780641 commit b5c152c
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/code-scan.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: code-scan

on:
push:
branches: [ dev* ]
pull_request:
branches: [ dev* ]
schedule:
- cron: "0 12 * * MON"
workflow_dispatch:

permissions:
actions: read
contents: read

jobs:
code-ql:

runs-on: ubuntu-latest

permissions:
security-events: write

strategy:
fail-fast: false
matrix:
language: [ "csharp" ]

steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Setup .NET SDK
uses: actions/setup-dotnet@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"

0 comments on commit b5c152c

Please sign in to comment.