summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore3
-rw-r--r--Makefile9
-rw-r--r--client/client.go3
-rw-r--r--client/http.go3
-rw-r--r--cmd/cmd.go3
-rw-r--r--cmd/daemon.go3
-rw-r--r--cmd/register.go3
-rw-r--r--cmd/register_test.go3
-rw-r--r--config/config.go3
-rw-r--r--core/runner.go3
-rw-r--r--engine/docker.go3
-rw-r--r--engine/engine.go3
-rw-r--r--engine/options.go3
-rw-r--r--go.mod2
-rw-r--r--go.sum7
-rw-r--r--main.go3
-rw-r--r--poller/metric.go3
-rw-r--r--poller/poller.go3
-rw-r--r--poller/thread.go3
-rw-r--r--register/register.go3
-rw-r--r--runtime/reporter.go3
-rw-r--r--runtime/runtime.go3
-rw-r--r--runtime/task.go3
23 files changed, 74 insertions, 4 deletions
diff --git a/.gitignore b/.gitignore
index 82ec058..53d57e1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,5 @@
act_runner
.env
.runner
-coverage.txt \ No newline at end of file
+coverage.txt
+/gitea-vet \ No newline at end of file
diff --git a/Makefile b/Makefile
index d5a1805..bb395c4 100644
--- a/Makefile
+++ b/Makefile
@@ -71,9 +71,6 @@ fmt:
fi
$(GOFMT) -w $(GOFILES)
-vet:
- $(GO) vet ./...
-
.PHONY: fmt-check
fmt-check:
@hash gofumpt > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
@@ -89,6 +86,12 @@ fmt-check:
test: fmt-check
@$(GO) test -v -cover -coverprofile coverage.txt ./... && echo "\n==>\033[32m Ok\033[m\n" || exit 1
+.PHONY: vet
+vet:
+ @echo "Running go vet..."
+ @$(GO) build code.gitea.io/gitea-vet
+ @$(GO) vet -vettool=gitea-vet ./...
+
install: $(GOFILES)
$(GO) install -v -tags '$(TAGS)' -ldflags '$(EXTLDFLAGS)-s -w $(LDFLAGS)'
diff --git a/client/client.go b/client/client.go
index 04b0ae5..b9bda52 100644
--- a/client/client.go
+++ b/client/client.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package client
import (
diff --git a/client/http.go b/client/http.go
index 2c2d628..5c878a9 100644
--- a/client/http.go
+++ b/client/http.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package client
import (
diff --git a/cmd/cmd.go b/cmd/cmd.go
index 278a0df..28d2db2 100644
--- a/cmd/cmd.go
+++ b/cmd/cmd.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package cmd
import (
diff --git a/cmd/daemon.go b/cmd/daemon.go
index 46d78ad..8b49bca 100644
--- a/cmd/daemon.go
+++ b/cmd/daemon.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package cmd
import (
diff --git a/cmd/register.go b/cmd/register.go
index 8990f0f..9e8a1ac 100644
--- a/cmd/register.go
+++ b/cmd/register.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package cmd
import (
diff --git a/cmd/register_test.go b/cmd/register_test.go
index 0179a97..81d29fb 100644
--- a/cmd/register_test.go
+++ b/cmd/register_test.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package cmd
import "testing"
diff --git a/config/config.go b/config/config.go
index 53a4cf1..4ac00fd 100644
--- a/config/config.go
+++ b/config/config.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package config
import (
diff --git a/core/runner.go b/core/runner.go
index da58835..2005e5a 100644
--- a/core/runner.go
+++ b/core/runner.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package core
const (
diff --git a/engine/docker.go b/engine/docker.go
index c3017e9..7f89ffc 100644
--- a/engine/docker.go
+++ b/engine/docker.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package engine
import (
diff --git a/engine/engine.go b/engine/engine.go
index 6a37b4b..5580416 100644
--- a/engine/engine.go
+++ b/engine/engine.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package engine
import (
diff --git a/engine/options.go b/engine/options.go
index 46c6f9d..7c81a6d 100644
--- a/engine/options.go
+++ b/engine/options.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package engine
import "github.com/docker/docker/client"
diff --git a/go.mod b/go.mod
index b97715b..4964367 100644
--- a/go.mod
+++ b/go.mod
@@ -18,6 +18,7 @@ require (
)
require (
+ code.gitea.io/gitea-vet v0.2.3-0.20230113022436-2b1561217fa5 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/Microsoft/hcsshim v0.9.3 // indirect
@@ -72,6 +73,7 @@ require (
golang.org/x/net v0.0.0-20220906165146-f3363e06e74c // indirect
golang.org/x/sys v0.0.0-20220818161305-2296e01440c6 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
+ golang.org/x/tools v0.1.5 // indirect
gopkg.in/warnings.v0 v0.1.2 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
diff --git a/go.sum b/go.sum
index 56a98ca..a7dc12f 100644
--- a/go.sum
+++ b/go.sum
@@ -24,6 +24,10 @@ cloud.google.com/go/storage v1.5.0/go.mod h1:tpKbwo567HUNpVclU5sGELwQWBDZ8gh0Zeo
cloud.google.com/go/storage v1.6.0/go.mod h1:N7U0C8pVQ/+NIKOBQyamJIeKQKkZ+mxpohlUTyfDhBk=
code.gitea.io/actions-proto-go v0.2.0 h1:nYh9nhhfk67YA4wVNLsCzd//RCvXnljwXClJ33+HPVk=
code.gitea.io/actions-proto-go v0.2.0/go.mod h1:00ys5QDo1iHN1tHNvvddAcy2W/g+425hQya1cCSvq9A=
+code.gitea.io/gitea-vet v0.2.2 h1:TEOV/Glf38iGmKzKP0EB++Z5OSL4zGg3RrAvlwaMuvk=
+code.gitea.io/gitea-vet v0.2.2/go.mod h1:zcNbT/aJEmivCAhfmkHOlT645KNOf9W2KnkLgFjGGfE=
+code.gitea.io/gitea-vet v0.2.3-0.20230113022436-2b1561217fa5 h1:daBEK2GQeqGikJESctP5Cu1i33z5ztAD4kyQWiw185M=
+code.gitea.io/gitea-vet v0.2.3-0.20230113022436-2b1561217fa5/go.mod h1:zcNbT/aJEmivCAhfmkHOlT645KNOf9W2KnkLgFjGGfE=
dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
gitea.com/gitea/act v0.234.3-0.20230224062034-1252e551b867 h1:adWfgBA3oIa5c41fSdpgZn4DM+RkPOSa9d4wiXZreO8=
gitea.com/gitea/act v0.234.3-0.20230224062034-1252e551b867/go.mod h1:2C/WbTalu1VPNgbVaZJaZDzlOtAKqkXJhdOClxkMy14=
@@ -751,6 +755,7 @@ github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f h1:mvXjJIHRZy
github.com/xeipuuv/gojsonschema v0.0.0-20180618132009-1d523034197f/go.mod h1:5yf86TLmAcydyeJq5YvxkGPE2fm/u4myDekKRoLuqhs=
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2/go.mod h1:UETIi67q53MR2AWcXfiuqkDkRtnGDLqkBTpCHuJHxtU=
github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77/go.mod h1:aYKd//L2LvnjZzWKhF00oedf4jCCReLcmhLdhm1A27Q=
+github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
@@ -1019,6 +1024,7 @@ golang.org/x/tools v0.0.0-20200207183749-b753a1ba74fa/go.mod h1:TB2adYChydJhpapK
golang.org/x/tools v0.0.0-20200212150539-ea181f53ac56/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
golang.org/x/tools v0.0.0-20200224181240-023911ca70b2/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
golang.org/x/tools v0.0.0-20200304193943-95d2e580d8eb/go.mod h1:o4KQGtdN14AW+yjsvvwRTJJuXz8XRtIHtEnmAXLyFUw=
+golang.org/x/tools v0.0.0-20200325010219-a49f79bcc224/go.mod h1:Sl4aGygMT6LrqrWclx+PTx3U+LnKx/seiNR+3G19Ar8=
golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
golang.org/x/tools v0.0.0-20200505023115-26f46d2f7ef8/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
golang.org/x/tools v0.0.0-20200616133436-c1934b75d054/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
@@ -1026,6 +1032,7 @@ golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roY
golang.org/x/tools v0.0.0-20200916195026-c9a70fc28ce3/go.mod h1:z6u4i615ZeAfBE4XtMziQW1fSVJXACjjbWkB/mvPzlU=
golang.org/x/tools v0.0.0-20210106214847-113979e3529a/go.mod h1:emZCQorbCU4vsT4fOWvOPXz4eW1wZW4PmDk9uLelYpA=
golang.org/x/tools v0.1.1/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
+golang.org/x/tools v0.1.5 h1:ouewzE6p+/VEB31YYnTbEJdi8pFqKp4P4n85vwo3DHA=
golang.org/x/tools v0.1.5/go.mod h1:o0xws9oXOQQZyjljx8fwUC0k7L1pTE6eaCbjGeHmOkk=
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
diff --git a/main.go b/main.go
index 333e615..dded5dd 100644
--- a/main.go
+++ b/main.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package main
import (
diff --git a/poller/metric.go b/poller/metric.go
index 08f0fe7..3731b79 100644
--- a/poller/metric.go
+++ b/poller/metric.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package poller
import "sync/atomic"
diff --git a/poller/poller.go b/poller/poller.go
index abb96c8..007809f 100644
--- a/poller/poller.go
+++ b/poller/poller.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package poller
import (
diff --git a/poller/thread.go b/poller/thread.go
index fe29a4a..7fa6af1 100644
--- a/poller/thread.go
+++ b/poller/thread.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package poller
import "sync"
diff --git a/register/register.go b/register/register.go
index 3c5e7d1..400d281 100644
--- a/register/register.go
+++ b/register/register.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package register
import (
diff --git a/runtime/reporter.go b/runtime/reporter.go
index b6d38bf..dad0590 100644
--- a/runtime/reporter.go
+++ b/runtime/reporter.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package runtime
import (
diff --git a/runtime/runtime.go b/runtime/runtime.go
index 4bac678..7447459 100644
--- a/runtime/runtime.go
+++ b/runtime/runtime.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package runtime
import (
diff --git a/runtime/task.go b/runtime/task.go
index b899c5b..125a8d8 100644
--- a/runtime/task.go
+++ b/runtime/task.go
@@ -1,3 +1,6 @@
+// Copyright 2022 The Gitea Authors. All rights reserved.
+// SPDX-License-Identifier: MIT
+
package runtime
import (