Skip to content

Commit

Permalink
add codeql config
Browse files Browse the repository at this point in the history
  • Loading branch information
patinthehat committed Nov 18, 2024
1 parent c54629c commit 78374f0
Showing 1 changed file with 51 additions and 0 deletions.
51 changes: 51 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL Advanced"

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
schedule:
- cron: "27 22 * * 5"

jobs:
analyze:
name: Analyze Go
runs-on: "ubuntu-latest"
permissions:
security-events: write
packages: read
actions: read
contents: read

strategy:
fail-fast: false

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: go
build-mode: autobuild
config-file: ./.github/codeql.yml
queries: security-and-quality
# packs: codeql/go-all

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:go"

0 comments on commit 78374f0

Please sign in to comment.