We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b049396 commit 0fc3138Copy full SHA for 0fc3138
.github/workflows/build.yml
@@ -9,6 +9,12 @@ jobs:
9
runs-on: macos-latest
10
steps:
11
- uses: actions/checkout@v2
12
+ - uses: actions/cache@v2
13
+ with:
14
+ path: .build
15
+ key: ${{ runner.os }}-spm-${{ hashFiles('**/Package.resolved') }}
16
+ restore-keys: |
17
+ ${{ runner.os }}-spm-
18
- name: Build and test
19
run: set -o pipefail && env NSUnbufferedIO=YES xcodebuild -scheme 'CryptomatorCryptoLib' -destination 'platform=macOS' -enableCodeCoverage YES clean test | xcpretty
20
- name: Upload code coverage report
0 commit comments