Add BasicWhitelisting contract (#302) #1509
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: Solidity code coverage | |
on: [push] | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
name: Solidity code coverage | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '20.x' | |
- run: npm ci | |
env: | |
GH_TOKEN: ${{ secrets.github_token }} | |
- run: SOLIDITY_COVERAGE=true NO_GAS_ENFORCE=1 npx hardhat coverage |