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

salsadigitalauorg / shipshape / 17874139241

20 Sep 2025 02:31AM UTC coverage: 59.972% (-7.0%) from 66.972%
17874139241

push

github

web-flow
Merge pull request #88 from salsadigitalauorg/chore/fix-vulnerable-dependencies

chore: update Go version and dependencies

3470 of 5786 relevant lines covered (59.97%)

5.1 hits per line

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

0.0
/pkg/plugin/base.go
1
package plugin
2

3
// BasePlugin provides common fields and functionality for all plugins.
4
type BasePlugin struct {
5
        // Common fields found across plugins
6
        Id string `yaml:"-"`
7

8
        // Internal fields
9
        errors []error
10
}
11

12
// Base getter methods
13
func (p *BasePlugin) GetId() string {
×
14
        return p.Id
×
15
}
×
16

17
func (p *BasePlugin) GetErrors() []error {
×
18
        return p.errors
×
19
}
×
20

21
// AddError adds an error to the plugin's error list
22
func (p *BasePlugin) AddErrors(errs ...error) {
×
23
        p.errors = append(p.errors, errs...)
×
24
}
×
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