We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e916d0 commit fed3d93Copy full SHA for fed3d93
.github/workflows/contracts-testing.yml
@@ -69,6 +69,10 @@ jobs:
69
- name: Install lcov
70
run: sudo apt-get install -y lcov
71
72
+ - name: Run Foundry tests without coverage
73
+ run: forge test
74
+ working-directory: contracts
75
+
76
- name: Run Hardhat and Foundry tests with coverage
77
run: yarn coverage
78
working-directory: contracts
contracts/scripts/coverage.sh
@@ -39,6 +39,7 @@ lcov \
39
--ignore-errors format \
40
--ignore-errors inconsistent \
41
--ignore-errors empty \
42
+ --ignore-errors unused \
43
--rc max_message_count=3 \
44
--rc branch_coverage=1 \
45
--rc derive_function_end_line=0 \
0 commit comments