Skip to content

Add test fixture

Add test fixture #20

Workflow file for this run

name: test workflow
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
name: Test
runs-on: macos-15
steps:
- 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: |
SRCROOT="$GITHUB_WORKSPACE/GitClient" xcodebuild clean test -scheme GitClient CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -destination "platform=macOS" -disableAutomaticPackageResolution