add coveralls steps to the tests #15

Merged
natercio merged 4 commits from coveralls-badge into main 2025-11-20 20:01:30 +00:00
Showing only changes of commit a347443c81 - Show all commits

View File

@@ -19,10 +19,12 @@ func (d Side) String() string {
} }
} }
// IsBuy returns true if the s == SideBuy
func (d Side) IsBuy() bool { func (d Side) IsBuy() bool {
return d == SideBuy return d == SideBuy
} }
// IsSell returns true if the s == SideSell
func (d Side) IsSell() bool { func (d Side) IsSell() bool {
return d == SideSell return d == SideSell
} }