From f268589aeb68cd8c7460ec0963f979a10683cd8d Mon Sep 17 00:00:00 2001 From: Ryan Jarvis Date: Tue, 12 Nov 2024 20:34:02 -0600 Subject: [PATCH] Add back -quiet in xcodebuild CI command --- .github/workflows/ci.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 599c607..e8ce01c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,6 @@ jobs: run: swiftlint . ui-tests: strategy: - fail-fast: false matrix: include: - os: macos-12 @@ -44,4 +43,4 @@ jobs: - name: Boot simulator run: xcrun simctl boot '${{ matrix.sim }}' - name: Run tests - run: xcodebuild -project ./Example/Example.xcodeproj -scheme Example test -destination platform='iOS Simulator',name='${{ matrix.sim }}' -enableCodeCoverage YES -derivedDataPath "./output" \ No newline at end of file + run: xcodebuild -project ./Example/Example.xcodeproj -scheme Example test -destination platform='iOS Simulator',name='${{ matrix.sim }}' -quiet -enableCodeCoverage YES -derivedDataPath "./output" \ No newline at end of file