Skip to content

Commit 41da02e

Browse files
committed
[#48] Fastlane ๋„์ž…
1 parent 5f0107a commit 41da02e

File tree

2 files changed

+16
-9
lines changed

2 files changed

+16
-9
lines changed

โ€Ž.github/workflows/cicd-automation.yml

+14-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,20 @@
1-
name: CI/CD Automation
1+
name: CI/CD Automation Tests
22

33
on:
4-
pull_request:
5-
branches:
6-
- qa
7-
84
push:
95
branches:
106
- cicd-automation
117

128
jobs:
13-
Distribute:
9+
CICD_Automation_Tests:
1410
runs-on: macos-latest
1511
environment: Configuration Files
1612
steps:
1713
- uses: actions/checkout@v4
1814
- uses: jdx/mise-action@v2
15+
- uses: ruby/setup-ruby@v1
16+
with:
17+
ruby-version: 2.7.2
1918

2019
# - name: Install Tuist
2120
# run: |
@@ -50,4 +49,12 @@ jobs:
5049
5150
- name: Build Project
5251
run: |
53-
tuist build
52+
tuist build
53+
54+
- name: Run Tests via Tuist
55+
run: |
56+
tuist test
57+
58+
- name: Run Tests via Fastlane
59+
run: |
60+
fastlane tests

โ€Žfastlane/report.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55

66

77

8-
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.00017">
8+
<testcase classname="fastlane.lanes" name="0: default_platform" time="0.000189">
99

1010
</testcase>
1111

1212

13-
<testcase classname="fastlane.lanes" name="1: capture_screenshots" time="184.897631">
13+
<testcase classname="fastlane.lanes" name="1: capture_screenshots" time="172.753046">
1414

1515
</testcase>
1616

0 commit comments

Comments
ย (0)