Skip to content

CodeQL Analysis

CodeQL Analysis #94

Workflow file for this run

name: "CodeQL Analysis"
on:
schedule:
- cron: '0 0 * * 0'
workflow_dispatch:
jobs:
analyze:
name: CodeQL Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
languages:
- go
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.languages }}
queries: security-extended, security-and-quality
- name: Autobuild Project
uses: github/codeql-action/autobuild@v3
- name: Run CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: /language:${{ matrix.languages }}