1
0
Fork 0
mirror of synced 2024-06-23 08:30:29 +12:00

Merge pull request #624 from mario-campos/dev

Implement CodeQL Static Analysis
This commit is contained in:
Nick Sweeting 2021-01-21 01:38:01 +02:00 committed by GitHub
commit 96269a6752
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

32
.github/workflows/codeql-analysis.yml vendored Normal file
View file

@ -0,0 +1,32 @@
name: "CodeQL"
on:
push:
branches: [ dev ]
pull_request:
branches: [ dev ]
schedule:
- cron: '43 1 * * 2'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ 'python' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
queries: security-extended
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1