File tree 1 file changed +9
-5
lines changed
1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change 1
- name : Run Test
1
+ name : Test
2
2
3
3
on :
4
4
workflow_dispatch :
5
5
push :
6
6
tags :
7
7
- " *.*.*"
8
8
9
+ concurrency :
10
+ group : ${{ github.workflow }}-${{ github.ref }}
11
+ cancel-in-progress : true
12
+
9
13
jobs :
10
14
run-unit-test :
11
- name : Run Unit Test
15
+ name : Unit Test
12
16
runs-on : macos-14
13
17
timeout-minutes : 30
14
18
env :
@@ -26,12 +30,12 @@ jobs:
26
30
xcodebuild -scheme spp test \
27
31
-only-testing:SourcePackagesParserTests \
28
32
-destination "platform=macOS,arch=arm64" \
29
- -resultBundlePath SourcePackagesParserTests | \
33
+ -resultBundlePath TestResults/result_bundle | \
30
34
xcpretty -c && exit ${PIPESTATUS[0]}
31
35
32
36
- name : Archive test results
33
37
if : success() || failure()
34
38
uses : kishikawakatsumi/xcresulttool@v1
35
39
with :
36
- path : |
37
- SourcePackagesParserTests.xcresult
40
+ path : TestResults/result_bundle.xcresult
41
+ show-passed-tests : false
You can’t perform that action at this time.
0 commit comments