PR Checks: Test codeql-bundle.tar.gz (#1822)
This commit is contained in:
parent
a98b9bd46b
commit
1f63aba653
37 changed files with 187 additions and 2 deletions
|
|
@ -63,6 +63,10 @@ for file in os.listdir('checks'):
|
|||
'version': version
|
||||
})
|
||||
|
||||
useAllPlatformBundle = "false" # Default to false
|
||||
if checkSpecification.get('useAllPlatformBundle'):
|
||||
useAllPlatformBundle = checkSpecification['useAllPlatformBundle']
|
||||
|
||||
steps = [
|
||||
{
|
||||
'name': 'Check out repository',
|
||||
|
|
@ -73,7 +77,8 @@ for file in os.listdir('checks'):
|
|||
'id': 'prepare-test',
|
||||
'uses': './.github/actions/prepare-test',
|
||||
'with': {
|
||||
'version': '${{ matrix.version }}'
|
||||
'version': '${{ matrix.version }}',
|
||||
'use-all-platform-bundle': useAllPlatformBundle
|
||||
}
|
||||
},
|
||||
# We don't support Swift on Windows or prior versions of the CLI.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue