Skip to content

Commit 02649a7

Browse files
committed
feat: set fail-fast false
1 parent 76765dc commit 02649a7

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

Diff for: .github/workflows/tlin_check.yml

+4
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,11 @@ on:
77

88
jobs:
99
tlin-check:
10+
strategy:
11+
fail-fast: false
12+
1013
runs-on: ubuntu-latest
14+
1115
steps:
1216
- name: checkout code
1317
uses: actions/checkout@v4

Diff for: pool/doc.gno

-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
// Package pool handles liquidity management, including creating new liquidity positions and withdrawing liquidity.
2-
a
32
package pool

Diff for: pool/errors.gno

-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ var (
3232
errInvalidTickAndTickSpacing = errors.New("[GNOSWAP-POOL-022] invalid tick and tick spacing requested")
3333
errInvalidAddress = errors.New("[GNOSWAP-POOL-023] invalid address")
3434
errInvalidTickRange = errors.New("[GNOSWAP-POOL-024] tickLower is greater than tickUpper")
35-
err
3635
)
3736

3837
// addDetailToError adds detail to an error message

Diff for: pool/gno.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
gno.land/p/gnoswap/pool v0.0.0-latest
99
gno.land/p/gnoswap/uint256 v0.0.0-latest
1010
gno.land/r/gnoswap/v1/common v0.0.0-latest
11-
gno.land/r/gnoswap/v1/consts v0.0.0-latestz
11+
gno.land/r/gnoswap/v1/consts v0.0.0-latest
1212
gno.land/r/gnoswap/v1/emission v0.0.0-latest
1313
gno.land/r/gnoswap/v1/gns v0.0.0-latest
1414
)

0 commit comments

Comments
 (0)