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 906d857 commit 8854440Copy full SHA for 8854440
.github/workflows/swift.yml
@@ -16,12 +16,17 @@ jobs:
16
17
steps:
18
- uses: actions/checkout@v4
19
- - name: Build
20
- run: swift build -v
21
- - name: Run tests
22
- run: swift test -v --enable-code-coverage
23
- - name: Upload coverage reports to Codecov
24
- uses: codecov/codecov-action@v5
+ - name: Cache build
+ id: cache-build
+ uses: actions/cache@v4
25
with:
26
- token: ${{ secrets.CODECOV_TOKEN }}
27
- slug: frankois944/KTViewModelBuilder
+ path: |
+ .build/
+ key: ${{ runner.os }}-build
+ - name: Run tests
+ run: |
28
+ swift test --enable-code-coverage
29
+ bash <(curl -s https://codecov.io/bash) -t ${{ secrets.SONAR_TOKEN }}
30
+
31
32
0 commit comments