2020-09-20 18:26:41 -04:00
|
|
|
|
name: CodeQL
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
|
|
|
|
on:
|
|
|
|
|
push:
|
|
|
|
|
pull_request:
|
2020-09-20 18:26:41 -04:00
|
|
|
|
types: [opened, synchronize, reopened]
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
analyze:
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
strategy:
|
|
|
|
|
fail-fast: false
|
|
|
|
|
matrix:
|
2021-02-16 16:16:31 -05:00
|
|
|
|
language: ["go"]
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
|
|
|
|
steps:
|
2021-02-16 16:16:31 -05:00
|
|
|
|
- name: Checkout repository
|
|
|
|
|
uses: actions/checkout@v2
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
2021-02-16 16:16:31 -05:00
|
|
|
|
- name: Initialize CodeQL
|
|
|
|
|
uses: github/codeql-action/init@v1
|
|
|
|
|
with:
|
|
|
|
|
languages: ${{ matrix.language }}
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
2021-02-16 16:16:31 -05:00
|
|
|
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
|
|
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
|
|
|
- name: Autobuild
|
|
|
|
|
uses: github/codeql-action/autobuild@v1
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
2021-02-16 16:16:31 -05:00
|
|
|
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
|
|
|
# 📚 https://git.io/JvXDl
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
2021-02-16 16:16:31 -05:00
|
|
|
|
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
|
|
|
|
# and modify them (or add more) to build your code if your project
|
|
|
|
|
# uses a compiled language
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
2021-02-16 16:16:31 -05:00
|
|
|
|
#- run: |
|
|
|
|
|
# make bootstrap
|
|
|
|
|
# make release
|
2020-09-15 04:02:46 -04:00
|
|
|
|
|
2021-02-16 16:16:31 -05:00
|
|
|
|
- name: Perform CodeQL Analysis
|
|
|
|
|
uses: github/codeql-action/analyze@v1
|