Add test fixture #18
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 | |
steps: | |
- name: Set SRCROOT | |
run: echo "SRCROOT=$GITHUB_WORKSPACE" >> $GITHUB_ENV | |
- name: Select Xcode | |
run: | | |
sudo xcode-select -s /Applications/Xcode_16.2.app/Contents/Developer | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Check git version | |
run: | | |
git --version | |
- name: Test | |
run: | | |
xcodebuild clean test -scheme GitClient CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=macOS" -disableAutomaticPackageResolution |