-
Notifications
You must be signed in to change notification settings - Fork 30
44 lines (37 loc) · 1.11 KB
/
run-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
name: Run tests
on:
push:
tags-ignore:
- '**'
branches:
- '**'
pull_request:
jobs:
tests:
name: Run Xcode Tests
runs-on: macos-15
strategy:
matrix:
xcode: ["16.1"]
ios_version: ["18.1"]
device_name: ["iPhone 16"]
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install SwiftGen
run: which swiftgen || HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_CLEANUP=1 brew install swiftgen
- name: Install SwiftLint
run: which swiftlint || HOMEBREW_NO_AUTO_UPDATE=1 HOMEBREW_NO_INSTALL_CLEANUP=1 brew install swiftlint
- name: Select Xcode ${{ matrix.xcode }}
uses: maxim-lobanov/setup-xcode@v1
with:
xcode-version: ${{ matrix.xcode }}
- name: Clean & Build & Test
uses: sersoft-gmbh/[email protected]
with:
project: Zotero.xcodeproj
scheme: Zotero
destination: platform=iOS Simulator,OS=${{ matrix.ios_version }},name=${{ matrix.device_name }}
action: clean test