Skip to content
Merged
1 change: 1 addition & 0 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ jobs:
version: v1.55
only-new-issues: true
working-directory: ${{ matrix.directory }}
args: --out-format=colored-line-number
- run: go test ./... -short
working-directory: ${{ matrix.directory }}

Expand Down
2 changes: 1 addition & 1 deletion .golangci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ linters:
- goconst # finds repeated strings that could be replaced by a constant
- gocritic # provides diagnostics that check for bugs, performance and style issues
- gocyclo # computes and checks the cyclomatic complexity of functions
- godot # checks if comments end in a period
# - godot # checks if comments end in a period
- goimports # in addition to fixing imports, goimports also formats your code in the same style as gofmt
- gomnd # detects magic numbers
# - gomoddirectives # manages the use of 'replace', 'retract', and 'excludes' directives in go.mod
Expand Down
2 changes: 1 addition & 1 deletion sdk/manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type attributeObject struct {
KasURL string `json:"kasURL"`
}

type policyObject struct {
type PolicyObject struct {
UUID string `json:"uuid"`
Body struct {
DataAttributes []attributeObject `json:"dataAttributes"`
Expand Down
Loading