File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55
66env :
77 COVERAGE_SENSITIVITY_PERCENT : 1
8- MAINNET_RPC : ${{ secrets.MAINNET_RPC }}
9- SEPOLIA_RPC : ${{ secrets.SEPOLIA_RPC }}
108
119jobs :
1210 base-coverage :
4240
4341 - name : Run base branch coverage
4442 if : steps.cache-base.outputs.cache-hit != 'true'
45- env :
46- FOUNDRY_FUZZ_RUNS : 256
47- run : yarn coverage --threads 1
43+ run : yarn coverage
4844
4945 - name : Prepare cached base lcov
5046 if : steps.cache-base.outputs.cache-hit != 'true'
9995 fi
10096
10197 - name : Run current branch coverage
102- env :
103- FOUNDRY_FUZZ_RUNS : 256
104- run : yarn coverage --threads 1
98+ run : yarn coverage
10599
106100 - name : Setup LCOV
107101 uses : hrishikesh-kadam/setup-lcov@v1
Original file line number Diff line number Diff line change 1313 "scripts" : {
1414 "build" : " forge build" ,
1515 "build:optimized" : " FOUNDRY_PROFILE=optimized forge build" ,
16- "coverage" : " forge coverage --report summary --report lcov" ,
16+ "coverage" : " forge coverage --report summary --report lcov --match-path 'test/unit/*' " ,
1717 "deploy:mainnet" : " bash -c 'source .env && forge script DeployL2Resolver --rpc-url mainnet --account $MAINNET_DEPLOYER_NAME --broadcast --verify --chain mainnet -vvvvv'" ,
1818 "deploy:sepolia" : " bash -c 'source .env && forge script DeployL2Resolver --rpc-url sepolia --account $SEPOLIA_DEPLOYER_NAME --broadcast --verify --chain sepolia -vvvvv'" ,
1919 "lint:bulloak" : " find test/unit -name '*.tree' | xargs bulloak check" ,
You can’t perform that action at this time.
0 commit comments