Skip to content

Commit

Permalink
Added missing checkout, cache, and Xcode selection steps in integrati…
Browse files Browse the repository at this point in the history
…on tests job

[ci skip]
  • Loading branch information
tobihagemann committed Apr 16, 2024
1 parent b38245f commit 3cf1cd3
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,15 @@ jobs:
- name: WebDAV
scheme-name: WebDAVIntegrationTests
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: .build
key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
restore-keys: |
${{ runner.os }}-spm-
- name: Select Xcode 15.3
run: sudo xcode-select -s /Applications/Xcode_15.3.app
- name: Run integration tests
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme '${{ matrix.scheme-name }}' -destination "name=$DEVICE" -derivedDataPath $DERIVED_DATA_PATH test | xcpretty
env:
Expand Down

0 comments on commit 3cf1cd3

Please sign in to comment.