raedme #2
This file contains 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: Coverage | |
on: [push] | |
concurrency: | |
group: ${{github.workflow}}-${{github.ref}} | |
cancel-in-progress: true | |
env: | |
FOUNDRY_PROFILE: ci | |
ARB_SEPOLIA_RPC: ${{ secrets.ARB_SEPOLIA_RPC }} | |
ARB_MAINNET_RPC: ${{ secrets.ARB_MAINNET_RPC }} | |
jobs: | |
coverage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Foundry | |
uses: foundry-rs/foundry-toolchain@v1 | |
with: | |
version: nightly | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
cache: "yarn" | |
- name: Install dependencies | |
run: yarn --frozen-lockfile --network-concurrency 1 | |
- name: Install forge dependencies | |
run: forge install | |
- name: Precompile using 0.8.19 and via-ir=false | |
run: yarn build | |
- name: Install lcov (coverage dependency) | |
run: sudo apt-get update && sudo apt-get install lcov -y | |
- name: Run Coverage | |
shell: bash | |
run: yarn test:coverage | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4.1.0 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true | |
slug: ${{ github.repository }} |