-
-
Notifications
You must be signed in to change notification settings - Fork 269
27 lines (20 loc) · 706 Bytes
/
main.yml
File metadata and controls
27 lines (20 loc) · 706 Bytes
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
# This is a basic workflow to help you get started with Actions
name: Test
on:
push:
pull_request:
jobs:
Tests:
runs-on: macOS-latest
steps:
- uses: actions/checkout@v4
- name: List available Xcode versions
run: ls /Applications | grep Xcode
- name: Set up Xcode version
run: sudo xcode-select -s /Applications/Xcode_15.2.app/Contents/Developer
- name: Show current version of Xcode
run: xcodebuild -version
- name: Install xcbeautify
run: brew install xcbeautify
- name: Run unit tests
run: xcodebuild -scheme MeetingBar test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO | xcbeautify