Skip to content

CodeQL Scanning

CodeQL Scanning #449

Workflow file for this run

name: "CodeQL Scanning"
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
schedule:
- cron: '0 6 * * 6'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: ['go']
steps:
- name: Checkout respository
uses: actions/checkout@v3
- name: Install CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1