Skip to content

Commit 7b28c69

Browse files
committed
refactor: remove and modify some small details
1 parent 3ddc338 commit 7b28c69

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

.github/workflows/foundry.yml

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- master
87
- mainnet
9-
- testnet-goerli
8+
- testnet-holesky
109
- dev
1110
pull_request:
1211

@@ -24,8 +23,6 @@ jobs:
2423
test:
2524
name: Test
2625
runs-on: ubuntu-latest
27-
strategy:
28-
fail-fast: true
2926
steps:
3027
# Check out repository with all submodules for complete codebase access.
3128
- uses: actions/checkout@v4
@@ -66,8 +63,6 @@ jobs:
6663
run-coverage:
6764
name: Coverage
6865
runs-on: ubuntu-latest
69-
strategy:
70-
fail-fast: true
7166
steps:
7267
# Check out repository with all submodules for complete codebase access.
7368
- uses: actions/checkout@v4
@@ -107,7 +102,7 @@ jobs:
107102
path: report/*
108103

109104
# Check coverage threshold after uploading report
110-
- name: Check Coverage Threshold
105+
- name: Check Coverage Threshold for >=90%
111106
run: |
112107
LINES_PCT=$(lcov --summary lcov.info | grep "lines" | cut -d ':' -f 2 | cut -d '%' -f 1 | tr -d '[:space:]')
113108
FUNCTIONS_PCT=$(lcov --summary lcov.info | grep "functions" | cut -d ':' -f 2 | cut -d '%' -f 1 | tr -d '[:space:]')

0 commit comments

Comments
 (0)