Set up CodeQL analysis

This commit is contained in:
Pēteris Caune 2020-12-09 11:09:35 +02:00 committed by GitHub
parent 70ef9c1904
commit 5e3e371661
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

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