mirror of
https://github.com/github/codeql-action.git
synced 2026-05-02 03:40:10 +00:00
30ecc82e64
Lists are easier to modify
22 lines
560 B
YAML
22 lines
560 B
YAML
name: "All-platform bundle"
|
|
description: "Tests using an all-platform CodeQL Bundle"
|
|
operatingSystems:
|
|
- ubuntu
|
|
- macos
|
|
- windows
|
|
versions:
|
|
- nightly-latest
|
|
useAllPlatformBundle: "true"
|
|
installGo: true
|
|
installDotNet: true
|
|
steps:
|
|
- 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: ${{ steps.prepare-test.outputs.tools-url }}
|
|
- name: Build code
|
|
run: ./build.sh
|
|
- uses: ./../action/analyze
|