mattermost/.github/workflows/codeql-analysis.yml
Rohitesh Gupta a19614a101
MM-31882 - Add CodeQL check (#16661)
* Created codeql-analysis

* Updated codeql cron time

Co-authored-by: Mattermod <mattermod@users.noreply.github.com>
2021-01-14 00:46:58 +05:30

32 lines
699 B
YAML

name: "CodeQL"
on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '0 0 * * 0'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ 'go', 'javascript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1