mirror of
https://github.com/github/codeql-action.git
synced 2025-12-27 01:30:10 +08:00
23 lines
670 B
YAML
23 lines
670 B
YAML
name: "Local CodeQL bundle"
|
|
description: "Tests using a CodeQL bundle from a local file rather than a URL"
|
|
versions: ["nightly-latest"]
|
|
operatingSystems: ["ubuntu"]
|
|
installGo: true
|
|
steps:
|
|
- name: Fetch a CodeQL bundle
|
|
shell: bash
|
|
env:
|
|
CODEQL_URL: ${{ steps.prepare-test.outputs.tools-url }}
|
|
run: |
|
|
wget "$CODEQL_URL"
|
|
- id: init
|
|
uses: ./../action/init
|
|
with:
|
|
# Swift is not supported on Ubuntu so we manually exclude it from the list here
|
|
languages: cpp,csharp,go,java,javascript,python,ruby
|
|
tools: ./codeql-bundle-linux64.tar.zst
|
|
- name: Build code
|
|
shell: bash
|
|
run: ./build.sh
|
|
- uses: ./../action/analyze
|