-
Notifications
You must be signed in to change notification settings - Fork 1
50 lines (38 loc) · 1.11 KB
/
pull_request_test.yml
File metadata and controls
50 lines (38 loc) · 1.11 KB
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
name: PullRequestTest
on:
pull_request:
branches:
- dev
jobs:
build_test:
runs-on: macos-14
steps:
- uses: actions/checkout@v2
- name: Bring ignored files
uses: actions/checkout@v3
with:
repository: Pepsi-Club/WhereMyBus-ignored
path: XCConfig/
token: ${{ secrets.ACTION_TOKEN }}
- name: Setup Xcode version
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: "15.3"
- name: Setup Swift Version
uses: swift-actions/setup-swift@v2
with:
swift-version: "5.10"
- name: Get swift version
run: swift --version
- name: Mise
uses: jdx/mise-action@v2
- name: Install Tuist
run: mise install tuist@4.33.0
- name: Tuist version
run: mise use -g tuist@4.33.0
- name: Setup Project
run: make init
- name: Install SwiftLint
run: brew install swiftlint
- name: Tuist Build Test
run: tuist build App