mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
This allows us to set it automatically in the workflow generator, simplifying things and reducing the scope for error.
13 lines
466 B
YAML
13 lines
466 B
YAML
name: "Remote config file"
|
|
description: "Checks that specifying packages using only a config file works"
|
|
steps:
|
|
- uses: ./../action/init
|
|
with:
|
|
tools: ${{ steps.prepare-test.outputs.tools-url }}
|
|
languages: cpp,csharp,java,javascript,python
|
|
config-file: ${{ github.repository }}/tests/multi-language-repo/.github/codeql/custom-queries.yml@${{ github.sha }}
|
|
- name: Build code
|
|
shell: bash
|
|
run: ./build.sh
|
|
- uses: ./../action/analyze
|