-
Notifications
You must be signed in to change notification settings - Fork 1
93 lines (90 loc) · 3.23 KB
/
tests.yml
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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
name: Tests
on:
push:
branches: [ main ]
paths:
- 'dist/*.js'
- '.github/actions/generate-action-code/**'
- '.github/workflows/tests.yml'
pull_request:
branches: [ main ]
jobs:
test-spm:
name: Test using SPM
strategy:
matrix:
os: [ macos-latest, ubuntu-latest ]
env:
INPUT_PACKAGE_PATH: __test__/TestProject
INPUT_PACKAGE_VERSION: 1.0.0
INPUT_OUTPUT: docs
runs-on: ${{ matrix.os }}
steps:
- uses: swift-actions/[email protected]
with:
swift-version: '5'
- uses: actions/checkout@v4
- name: Generate action code
if: ${{ github.event_name == 'pull_request' }}
uses: ./.github/actions/generate-action-code
- uses: sersoft-gmbh/swifty-docs-action@main
if: ${{ github.event_name == 'push' }}
with:
package-path: ${{ env.INPUT_PACKAGE_PATH }}
package-version : ${{ env.INPUT_PACKAGE_VERSION }}
output: ${{ env.INPUT_OUTPUT }}
- uses: './'
if: ${{ github.event_name == 'pull_request' }}
with:
package-path: ${{ env.INPUT_PACKAGE_PATH }}
package-version : ${{ env.INPUT_PACKAGE_VERSION }}
output: ${{ env.INPUT_OUTPUT }}
- name: Check for SPM build
run: test -d '__test__/TestProject/.build'
- name: Check output path
run: test -d "${INPUT_OUTPUT}"
- name: Check index.html exists
run: test -f "${INPUT_OUTPUT}/index.html"
test-xcode:
name: Test using Xcode
env:
INPUT_PACKAGE_PATH: __test__/TestProject
INPUT_PACKAGE_VERSION: 1.0.0
INPUT_USE_XCODEBUILD: true
INPUT_XCODEBUILD_SCHEME: TestProject-Package
INPUT_XCODEBUILD_DESTINATION: 'platform=macOS'
INPUT_OUTPUT: docs
runs-on: macos-latest
steps:
- uses: maxim-lobanov/setup-xcode@v1
if: ${{ runner.os == 'macOS' }}
with:
xcode-version: latest-stable
- uses: actions/checkout@v4
- name: Generate action code
if: ${{ github.event_name == 'pull_request' }}
uses: ./.github/actions/generate-action-code
- uses: sersoft-gmbh/swifty-docs-action@main
if: ${{ github.event_name == 'push' }}
with:
package-path: ${{ env.INPUT_PACKAGE_PATH }}
package-version : ${{ env.INPUT_PACKAGE_VERSION }}
use-xcodebuild: ${{ env.INPUT_USE_XCODEBUILD }}
xcodebuild-scheme: ${{ env.INPUT_XCODEBUILD_SCHEME }}
xcodebuild-destination: ${{ env.INPUT_XCODEBUILD_DESTINATION }}
output: ${{ env.INPUT_OUTPUT }}
- uses: './'
if: ${{ github.event_name == 'pull_request' }}
with:
package-path: ${{ env.INPUT_PACKAGE_PATH }}
package-version : ${{ env.INPUT_PACKAGE_VERSION }}
use-xcodebuild: ${{ env.INPUT_USE_XCODEBUILD }}
xcodebuild-scheme: ${{ env.INPUT_XCODEBUILD_SCHEME }}
xcodebuild-destination: ${{ env.INPUT_XCODEBUILD_DESTINATION }}
output: ${{ env.INPUT_OUTPUT }}
- name: Check for Xcode SPM build
run: test -d '__test__/TestProject/.swiftpm'
- name: Check output path
run: test -d "${INPUT_OUTPUT}"
- name: Check index.html exists
run: test -f "${INPUT_OUTPUT}/index.html"