We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 49e6bba commit a53ceecCopy full SHA for a53ceec
.github/workflows/test.yml
@@ -39,3 +39,14 @@ jobs:
39
run: |
40
forge test -vvv --no-match-path "test/integration/*"
41
id: test
42
+
43
+ - name: Run Forge coverage
44
+ run: |
45
+ forge coverage --report lcov --no-match-path "test/integration/*"
46
+ id: coverage
47
48
+ - name: Upload coverage to Codecov
49
+ uses: codecov/codecov-action@v4
50
+ with:
51
+ files: lcov.info
52
+ fail_ci_if_error: false
0 commit comments