Skip to content

CodeQL

CodeQL #448

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [master, release/*]
pull_request:
branches: [master]
paths-ignore:
- "**/*.md"
- "**/*.py"
- "**/*.txt"
- "**/*.yaml"
schedule:
- cron: "17 11 * * 2"
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["go"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
build-mode: manual
- name: Build
shell: bash
run: |
make build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"