Skip to content

Commit

Permalink
ci: run tests w/o coverage first for better visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
ChiTimesChi committed Sep 24, 2024
1 parent 038605d commit 289549f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/solidity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,12 @@ jobs:
- name: Run Foundry Tests
if: ${{ matrix.package != 'solidity-devops' }}
working-directory: './packages/${{matrix.package}}'
run: forge coverage -vvv --report lcov --report summary >> $GITHUB_STEP_SUMMARY
run: forge test -vvv

- name: Run Foundry Coverage
if: ${{ matrix.package != 'solidity-devops' }}
working-directory: './packages/${{matrix.package}}'
run: forge coverage --report lcov --report summary >> $GITHUB_STEP_SUMMARY

- name: Send Coverage (Codecov)
if: ${{ matrix.package != 'solidity-devops' }}
Expand Down

0 comments on commit 289549f

Please sign in to comment.