Add test fixture #9
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
name: test workflow | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: Test | |
runs-on: macos-15 | |
env: | |
DEVELOPER_DIR: /Applications/Xcode_16.2.app | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check git | |
run: | | |
which git | |
- name: Check Xcode | |
run: | | |
xcode-select -p | |
- name: Set PATH for Git | |
run: | | |
export PATH="/opt/homebrew/bin:$PATH" | |
- name: Test | |
run: | | |
xcodebuild clean test -scheme GitClient CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=macOS" -disableAutomaticPackageResolution |