Skip to content

CodeQL

CodeQL #48

Workflow file for this run

name: "CodeQL"
on:
#push:
# branches: [ main ]
#pull_request:
# branches: [ main ]
schedule:
- cron: '29 7 * * 1'
jobs:
analyze:
name: Analyze
runs-on: windows-2022
permissions:
actions: read
contents: read
security-events: write
# Ignore dependabot, ImgBot and transifex-integration
#if: github.actor!= 'dependabot[bot]' &&
# github.actor!= 'imgbot[bot]' &&
# github.actor!= 'transifex-integration[bot]'
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: 'true'
- 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}}"