mirror of
https://github.com/github/codeql-action.git
synced 2026-01-06 14:40:10 +08:00
We are still getting coverage of the upload capability through the standard codeql analysis workflow.
17 lines
476 B
YAML
17 lines
476 B
YAML
name: "Go: Custom queries"
|
|
description: "Checks that Go works in conjunction with a config file specifying custom queries"
|
|
env:
|
|
DOTNET_GENERATE_ASPNET_CERTIFICATE: "false"
|
|
steps:
|
|
- uses: ./../action/init
|
|
with:
|
|
languages: go
|
|
config-file: ./.github/codeql/custom-queries.yml
|
|
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
|
- name: Build code
|
|
shell: bash
|
|
run: ./build.sh
|
|
- uses: ./../action/analyze
|
|
with:
|
|
upload-database: false
|