Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/golang.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: lint-license-and-shell
- name: lint-license
run: |
make lint-no-golangci
- name: golangci-lint
Expand All @@ -44,6 +44,10 @@ jobs:
go-version: ${{ env.GO_VERSION }}
- name: test
run: make test
- name: Convert coverage to lcov
uses: jandelgado/gcov2lcov-action@v1.2.0
with:
infile: testkit.coverprofile
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.3.7
with:
Expand Down
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,7 @@ lint: lint-no-golangci golangci-lint ## Run linters such as golangci-lint and ad

.PHONY: lint-no-golangci
lint-no-golangci: addlicense
find . -not -path '*/.*' -name '*.go' -exec $(ADDLICENSE) -check -l apache -s=only -check {} +
shellcheck hack/*.sh
find . -not -path '*/.*' -name '*.go' -exec $(ADDLICENSE) -check -l apache -s=only {} ';'

.PHONY: scan
scan:
Expand Down
2 changes: 1 addition & 1 deletion container/container.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2026 BWI GmbH and Solution Arsenal contributors
// Copyright 2026 BWI GmbH and Testkit contributors
// SPDX-License-Identifier: Apache-2.0

package container
Expand Down
2 changes: 1 addition & 1 deletion container/container_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2026 BWI GmbH and Solution Arsenal contributors
// Copyright 2026 BWI GmbH and Testkit contributors
// SPDX-License-Identifier: Apache-2.0

package container
Expand Down
2 changes: 1 addition & 1 deletion container/zot/zot.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2026 BWI GmbH and Solution Arsenal contributors
// Copyright 2026 BWI GmbH and Testkit contributors
// SPDX-License-Identifier: Apache-2.0

package zot
Expand Down
2 changes: 1 addition & 1 deletion container/zot/zot_test.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright 2026 BWI GmbH and Solution Arsenal contributors
// Copyright 2026 BWI GmbH and Testkit contributors
// SPDX-License-Identifier: Apache-2.0

package zot
Expand Down
Loading