diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 6915c959..813f8616 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -33,12 +33,15 @@ jobs: UPGRADE_TEST_OLD_PROXY: ${{ secrets.UPGRADE_TEST_OLD_PROXY }} UPGRADE_TEST_OLD_VERSION: ${{ secrets.UPGRADE_TEST_OLD_VERSION }} run: | - forge test -vvv - + forge test + #to retry only the 1 failed test + forge test --rerun + - name: Format contracts and generate snapshots if: github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name == github.repository run: | forge fmt + forge lint forge snapshot --isolate --match-contract Benchmark --via-ir - name: Commit formatting and snapshot changes