summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yml7
1 files changed, 1 insertions, 6 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index 93c85bd80..5ad63eea0 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -58,18 +58,13 @@ jobs:
id: carthage-cache
with:
path: Carthage
- key: ${{ runner.os }}-carthage-v2-${{ hashFiles('**/Cartfile.resolved') }}
+ key: ${{ runner.os }}-carthage-${{ hashFiles('**/Cartfile.resolved') }}
restore-keys: ${{ runner.os }}-carthage-
- name: Installing dependencies
if: steps.carthage-cache.outputs.cache-hit != 'true'
run: bash carthage-build.sh update --no-use-binaries --platform ios --cache-builds
- # run: |
- # carthage update --new-resolver --no-build
- # bash carthage-build.sh update --no-use-binaries --platform ios --cache-builds
- # run: carthage bootstrap --no-use-binaries --platform iOS --cache-builds
-
# Split build into build-only and test-only as it is faster than building and running in one step
- name: Building unit tests
run: xcodebuild build-for-testing -project "$PROJECT" -destination "$DESTINATION" -scheme "${{ matrix.scheme }}"