We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 146b334 commit 28908e0Copy full SHA for 28908e0
2 files changed
.github/workflows/coverage.yaml
@@ -9,6 +9,12 @@ jobs:
9
SimpleCov:
10
runs-on: ubuntu-latest
11
steps:
12
+ # Only download this if the coverage/ directory isn't present
13
+ - if: !exists('coverage/index.html')
14
+ uses: actions/download-artifact@v4
15
+ with:
16
+ name: coverage-report
17
+
18
- name: Check SimpleCov coverage
19
uses: joshmfrankel/simplecov-check-action@main
20
with:
.github/workflows/main.yaml
@@ -31,9 +31,8 @@ jobs:
31
env:
32
COVERAGE: "true"
33
34
- - name: Check SimpleCov coverage
35
- uses: joshmfrankel/simplecov-check-action@main
+ - name: Upload coverage results
+ uses: actions/upload-artifact@v4
36
37
- minimum_suite_coverage: 97
38
- minimum_file_coverage: 90
39
- github_token: ${{ secrets.GITHUB_TOKEN }}
+ path: coverage/
0 commit comments