Skip to content

Commit

Permalink
Add CodeQL analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmior committed Sep 25, 2023
1 parent dc2c643 commit 83ccb92
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "CodeQL"

on:
push:
branches: "master"
pull_request:
branches: "master"
schedule:
- cron: '39 16 * * 5'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
timeout-minutes: 360
permissions:
actions: read
contents: read
security-events: write

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

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

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

0 comments on commit 83ccb92

Please sign in to comment.