Skip to content

Have premint proxy deploy scripts. can deploy both now #707

Have premint proxy deploy scripts. can deploy both now

Have premint proxy deploy scripts. can deploy both now #707

Workflow file for this run

name: coverage
on: push
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
name: Check solidity test coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: "yarn"
- name: Install project dependencies
run: yarn
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run Forge coverage
run: yarn run coverage
id: build
- name: Setup LCOV
uses: hrishikesh-kadam/setup-lcov@v1
- name: Filter files to ignore
run: |
lcov --rc lcov_branch_coverage=1 \
--remove lcov.info \
--output-file lcov.info "*node_modules*" "*test*" "*script*" "*DeploymentConfig*" "*Redeem*"
- name: Report code coverage
uses: zgosalvez/github-actions-report-lcov@v2
with:
coverage-files: lcov.info
minimum-coverage: 89
artifact-name: code-coverage-report
github-token: ${{ secrets.GITHUB_TOKEN }}
working-directory: ./