Add files via upload #12
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
| name: Tests Pass with 100% Coverage | |
| on: ["push", "pull_request"] | |
| env: | |
| FOUNDRY_PROFILE: ci | |
| jobs: | |
| forge: | |
| strategy: | |
| fail-fast: true | |
| name: Foundry project | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| submodules: recursive | |
| - name: Install Foundry | |
| uses: foundry-rs/foundry-toolchain@v1 | |
| with: | |
| version: nightly | |
| - name: Run Forge build | |
| run: | | |
| forge --version | |
| forge build --sizes | |
| id: build | |
| - name: Install lcov | |
| uses: hrishikesh-kadam/[email protected] | |
| - name: Run Forge coverage | |
| env: | |
| MAINNET_RPC_URL: ${{ secrets.MAINNET_RPC_URL }} | |
| run: | | |
| forge coverage --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' | |
| id: coverage | |
| - name: Report code coverage | |
| uses: zgosalvez/[email protected] | |
| with: | |
| coverage-files: lcov.info | |
| minimum-coverage: 100 | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |