Merge pull request #767 from guidobouman/patch-1 #1201
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |