Skip to content

Commit

Permalink
Add CodeQL workflow for GitHub code scanning (#1369)
Browse files Browse the repository at this point in the history
Co-authored-by: LGTM Migrator <lgtm-migrator@users.noreply.github.com>
  • Loading branch information
lgtm-com[bot] and lgtm-migrator committed Nov 9, 2022
1 parent 803c0e0 commit 05bed83
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/codeql.yml
@@ -0,0 +1,41 @@
name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "18 19 * * 1"

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
uses: actions/checkout@v3

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"

0 comments on commit 05bed83

Please sign in to comment.