feat: deploy on Sepolia, upgrade deploy/verify scripts #192
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| pull_request: | |
| env: | |
| FOUNDRY_PROFILE: ci | |
| jobs: | |
| check: | |
| name: "Coverage Report 👨🏽🔬" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: v1.2.3 | |
| - name: Install dependencies | |
| run: forge install | |
| - name: Generate coverage report | |
| run: | | |
| forge coverage --report lcov | |
| ex -c 'g/SF:src\/mocks/.-1,/end_of_record/d' -c 'wq' lcov.info | |
| ex -c 'g/SF:test/.-1,/end_of_record/d' -c 'wq' lcov.info | |
| id: coverage | |
| - uses: codecov/codecov-action@v3 |