mirror of
https://github.com/github/codeql-action.git
synced 2026-01-04 05:30:16 +08:00
Build tracing currently does not support Windows 2022, so use `windows-2019` instead of`windows-latest`.
18 lines
655 B
YAML
18 lines
655 B
YAML
name: "Remote config file"
|
|
description: "Checks that specifying packages using only a config file works"
|
|
# Build tracing currently does not support Windows 2022, so use `windows-2019` instead of
|
|
# `windows-latest`.
|
|
os: [ubuntu-latest, macos-latest, windows-2019]
|
|
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
|
|
env:
|
|
TEST_MODE: true
|