mirror of
https://github.com/github/codeql-action.git
synced 2025-12-06 07:48:17 +08:00
21 lines
511 B
YAML
21 lines
511 B
YAML
name: "Local CodeQL bundle"
|
|
description: "Tests using a CodeQL bundle from a local file rather than a URL"
|
|
versions: ["nightly-latest"]
|
|
os: ["ubuntu-latest"]
|
|
steps:
|
|
- name: Fetch a CodeQL bundle
|
|
shell: bash
|
|
env:
|
|
CODEQL_URL: ${{ steps.prepare-test.outputs.tools-url }}
|
|
run: |
|
|
wget "$CODEQL_URL"
|
|
- uses: ./../action/init
|
|
with:
|
|
tools: ./codeql-bundle.tar.gz
|
|
- name: Build code
|
|
shell: bash
|
|
run: ./build.sh
|
|
- uses: ./../action/analyze
|
|
env:
|
|
TEST_MODE: true
|