File tree Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Expand file tree Collapse file tree 1 file changed +6
-12
lines changed Original file line number Diff line number Diff line change @@ -2,17 +2,17 @@ name: Coverage
22
33on :
44 push :
5- branches : [ "main" ]
5+ branches : ["main"]
66 pull_request :
7- branches : [ "main" ]
7+ branches : ["main"]
88
99env :
1010 FOUNDRY_PROFILE : ci
1111
1212jobs :
1313 coverage :
1414 runs-on : ubuntu-latest
15-
15+
1616 steps :
1717 - uses : actions/checkout@v4
1818 with :
2323 with :
2424 version : nightly
2525
26- - name : Run coverage
26+ - name : Generate Coverage Report
2727 run : |
28- forge coverage --report lcov
29-
30- - name : Upload coverage to Codecov
31- uses : codecov/codecov-action@v3
32- with :
33- token : ${{ secrets.CODECOV_TOKEN }}
34- files : ./lcov.info
35- fail_ci_if_error : true
28+ echo "# Coverage Report" >> $GITHUB_STEP_SUMMARY
29+ forge coverage --report summary --ir-minimum >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments