1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-26 23:24:35 -04:00
v2fly/.github/workflows/codeql-analysis.yml

48 lines
1.2 KiB
YAML
Raw Permalink Normal View History

name: CodeQL
2020-09-15 04:02:46 -04:00
on:
push:
branches: [master]
2020-09-15 04:02:46 -04:00
pull_request:
branches: [master]
types: [opened, synchronize, reopened]
paths-ignore:
- '**/*.md'
- '**/*.txt'
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@v3
2020-09-15 04:02:46 -04:00
2021-02-16 16:16:31 -05:00
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
2021-02-16 16:16:31 -05:00
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@v2
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@v2