Execute linters in test

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2023-10-04 22:46:37 +02:00
parent a585adcd13
commit 568b62f624
No known key found for this signature in database
GPG Key ID: D91C3E91E4CAD6F5

View File

@ -53,16 +53,19 @@ jobs:
- name: 'Lint and test code: API'
run: |
go test -cover -v ./...
golangci-lint run ./...
- name: 'Lint and test code: Client'
working-directory: ./pkg/client
run: |
go test -cover -v ./...
golangci-lint run ./...
- name: 'Lint and test code: OTS-CLI'
working-directory: ./cmd/ots-cli
run: |
go test -cover -v ./...
golangci-lint run ./...
- name: Generate (and validate) translations
run: make translate