File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,9 @@ for the [Swift Algorithms](https://github.com/skiptools/swift-algorithms) packag
61
61
swift-build-flags:
62
62
description: 'Additional flags to pass to the swift build command'
63
63
default: ''
64
+ swift-test-flags:
65
+ description: 'Additional flags to pass to the swift test command'
66
+ default: ''
64
67
run-tests:
65
68
description: 'Whether to run the tests or just the build'
66
69
default: 'true'
Original file line number Diff line number Diff line change @@ -16,6 +16,10 @@ inputs:
16
16
description : ' Additional flags to pass to the swift build command'
17
17
required : true
18
18
default : ' '
19
+ swift-test-flags :
20
+ description : ' Additional flags to pass to the swift test command'
21
+ required : true
22
+ default : ' '
19
23
android-emulator-options :
20
24
description : ' Options to pass to the Android emulator'
21
25
required : true
54
58
emulator-boot-timeout : ${{ inputs.android-emulator-boot-timeout }}
55
59
emulator-options : ${{ inputs.android-emulator-options }}
56
60
arch : x86_64
57
- script : skip android test --package-path ${{ inputs.package-path }} ${{ inputs.swift-build-flags }}
61
+ script : skip android test --package-path ${{ inputs.package-path }} ${{ inputs.swift-build-flags }} ${{ inputs.swift-test-flags }}
58
62
You can’t perform that action at this time.
0 commit comments