Skip to content

Commit

Permalink
Add CodeQL workflow for GitHub code scanning (#8312)
Browse files Browse the repository at this point in the history
Co-authored-by: LGTM Migrator <lgtm-migrator@users.noreply.github.com>
Co-authored-by: miigotu <miigotu@gmail.com>
  • Loading branch information
3 people committed Dec 31, 2022
1 parent 9eb15db commit 3504db7
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/codeql.yml
@@ -0,0 +1,3 @@
query-filters:
- exclude:
id: py/import-and-import-from
44 changes: 44 additions & 0 deletions .github/workflows/codeql.yml
@@ -0,0 +1,44 @@
name: "CodeQL"

on:
push:
branches: [ "master", "develop" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "27 10 * * 4"

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

strategy:
fail-fast: false
matrix:
language: [ python, javascript ]

steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
config-file: ./.github/codeql.yml
queries: +security-and-quality

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

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"

0 comments on commit 3504db7

Please sign in to comment.