Skip to content

Static checks

Static checks #87

Workflow file for this run

# Various static code analysis and checks
# Runs on commit or pull (to any branch)
# and on a schedule (weekly)
name: Static checks
on:
push:
branches: [main]
pull_request:
schedule:
- cron: "0 7 * * 6"
jobs:
analyse:
name: Analyze with CodeQL
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
- name: Autobuild with CodeQL
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2