Skip to content

CodeQL

CodeQL #127

Workflow file for this run

name: "CodeQL"
on:
push:
branches: ["develop", "master"]
pull_request:
branches: ["develop"]
schedule:
- cron: "20 13 * * 6"
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: ["go"]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20.1" # Replace with your Go version
cache: true
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: security-extended,security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@v2
# Uncomment below if autobuild doesn't work for your project
# - name: Manual Build
# run: |
# echo "Build the Go project"
# go build ./...
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{matrix.language}}"