Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions .github/workflows/codeql-analysis.yml'
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:

cron: '0 0 * * 1' # Runs every Monday

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest

steps:

name: Checkout repository
uses: actions/checkout@v2


name: Initialize the CodeQL tools
uses: github/codeql-action/init@v2
with:
languages: ['javascript', 'python'] # replace with the languages used in your repository


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