• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

jlaffaye / ftp / 13055737038

30 Jan 2025 03:36PM UTC coverage: 72.431%. Remained the same
13055737038

Pull #414

github

web-flow
Bump golangci/golangci-lint-action from 6.1.1 to 6.2.0

Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 6.1.1 to 6.2.0.
- [Release notes](https://github.com/golangci/golangci-lint-action/releases)
- [Commits](https://github.com/golangci/golangci-lint-action/compare/971e284b6...ec5d18412)

---
updated-dependencies:
- dependency-name: golangci/golangci-lint-action
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Pull Request #414: Bump golangci/golangci-lint-action from 6.1.1 to 6.2.0

712 of 983 relevant lines covered (72.43%)

18.56 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/debug.go
1
package ftp
2

3
import "io"
4

5
type debugWrapper struct {
6
        conn io.ReadWriteCloser
7
        io.Reader
8
        io.Writer
9
}
10

11
func newDebugWrapper(conn io.ReadWriteCloser, w io.Writer) io.ReadWriteCloser {
×
12
        return &debugWrapper{
×
13
                Reader: io.TeeReader(conn, w),
×
14
                Writer: io.MultiWriter(w, conn),
×
15
                conn:   conn,
×
16
        }
×
17
}
×
18

19
func (w *debugWrapper) Close() error {
×
20
        return w.conn.Close()
×
21
}
×
22

23
type streamDebugWrapper struct {
24
        io.Reader
25
        closer io.ReadCloser
26
}
27

28
func newStreamDebugWrapper(rd io.ReadCloser, w io.Writer) io.ReadCloser {
×
29
        return &streamDebugWrapper{
×
30
                Reader: io.TeeReader(rd, w),
×
31
                closer: rd,
×
32
        }
×
33
}
×
34

35
func (w *streamDebugWrapper) Close() error {
×
36
        return w.closer.Close()
×
37
}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc