-
Notifications
You must be signed in to change notification settings - Fork 0
75 lines (70 loc) · 1.77 KB
/
test.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: Test
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
inputs:
manual:
description: 'Run?'
required: false
type: boolean
jobs:
build:
name: Test
runs-on: [macos-15]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run Ui Tests
run: |
xcodebuild test \
-scheme SwiftRadioUITests \
-destination 'platform=iOS Simulator,name=iPhone 16,OS=latest'
#jobs:
# build:
# name: Test
# runs-on: self-hosted
#
# steps:
# - name: Checkout repository
# uses: actions/checkout@v3
#
# - name: Run Ui Tests
# run: |
# xcodebuild test \
# -scheme SwiftRadioUITests \
# -destination 'platform=iOS Simulator,name=iPhone 16,OS=latest' \
# -resultBundlePath ./TestResults.xcresult | xcpretty
#
# mkdir allure-results
# xcresults export TestResults.xcresult -o allure-results
# mkdir allure-report
# allure generate allure-results --report-dir allure-report
#
# - name: Load test report history
# uses: actions/checkout@v3
# if: always()
# continue-on-error: true
# with:
# ref: gh-pages
# path: gh-pages
#
# - name: Build test report
# uses: simple-elf/[email protected]
# if: always()
# with:
# gh_pages: gh-pages
# allure_history: allure-history
# allure_results: allure-results
#
# - name: Publish test report
# uses: peaceiris/actions-gh-pages@v3
# if: always()
# with:
# github_token: ${{ secrets.TOKEN }}
# publish_branch: gh-pages
# publish_dir: allure-history