Skip to content

Commit

Permalink
Merge pull request #200 from mattfarina/codeql
Browse files Browse the repository at this point in the history
Adding CodeQL scanning
  • Loading branch information
mattfarina committed Apr 5, 2023
2 parents 2c5535b + bf2d190 commit cc17577
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/codeql.yaml
@@ -0,0 +1,31 @@

name: "CodeQL"

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
CodeQL-Build:
runs-on: ubuntu-latest

permissions:
# required for all workflows
security-events: write

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

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: go

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

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2

0 comments on commit cc17577

Please sign in to comment.