Skip to content

Commit

Permalink
GitHub workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adamayoung committed Jan 5, 2024
1 parent d13f3d8 commit 1192b06
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,16 +46,15 @@ jobs:
destination: platform=watchOS Simulator,name=Apple Watch Series 9 (45mm),OS=10.2
- name: Apple TV
destination: platform=tvOS Simulator,name=Apple TV 4K (3rd generation),OS=17.2

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build
run: xcodebuild build-for-testing -scheme TMDb -only-testing TMDbTests -destination '${{ matrix.destination }}'
run: set -o pipefail && env NSUnbufferedIO=YES && xcodebuild build-for-testing -scheme TMDb -only-testing TMDbTests -destination '${{ matrix.destination }}' | xcpretty

- name: Test
run: xcodebuild test-without-building -scheme TMDb -only-testing TMDbTests -destination '${{ matrix.destination }}'
run: set -o pipefail && env NSUnbufferedIO=YES && xcodebuild test-without-building -scheme TMDb -only-testing TMDbTests -destination '${{ matrix.destination }}' | xcpretty

build-test-linux:
name: Build and Test (Linux)
Expand Down

0 comments on commit 1192b06

Please sign in to comment.