1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00
v2fly/.github/workflows/codeql-analysis.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

name: CodeQL
2020-09-15 08:02:46 +00:00
on:
push:
pull_request:
types: [opened, synchronize, reopened]
2020-09-15 08:02:46 +00:00
jobs:
analyze:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
2021-02-16 21:16:31 +00:00
language: ["go"]
2020-09-15 08:02:46 +00:00
steps:
2021-02-16 21:16:31 +00:00
- name: Checkout repository
uses: actions/checkout@v2
2020-09-15 08:02:46 +00:00
2021-02-16 21:16:31 +00:00
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
2020-09-15 08:02:46 +00:00
2021-02-16 21:16:31 +00: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 08:02:46 +00:00
2021-02-16 21:16:31 +00:00
# Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
2020-09-15 08:02:46 +00:00
2021-02-16 21:16:31 +00: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 08:02:46 +00:00
2021-02-16 21:16:31 +00:00
#- run: |
# make bootstrap
# make release
2020-09-15 08:02:46 +00:00
2021-02-16 21:16:31 +00:00
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1