Skip to content

Commit ddf3c21

Browse files
committed
1 parent 0be3134 commit ddf3c21

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/release.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,7 @@ jobs:
6464

6565
- name: Build backend
6666
run: |
67+
go test -timeout 1m -failfast -tags=integration -v ./pkg/ && \
6768
GOOS=linux GOARCH=amd64 go build -o ./dist/vertamedia-clickhouse-plugin_linux_amd64 ./pkg/ && \
6869
GOOS=linux GOARCH=arm64 go build -o ./dist/vertamedia-clickhouse-plugin_linux_arm64 ./pkg/ && \
6970
GOOS=windows GOARCH=amd64 go build -o ./dist/vertamedia-clickhouse-plugin_windows_amd64.exe ./pkg/ && \
@@ -113,10 +114,10 @@ jobs:
113114
- name: Lint plugin
114115
run: |
115116
git clone https://github.com/grafana/plugin-validator /tmp/plugin-validator
116-
pushd /tmp/plugin-validator/cmd/plugincheck
117+
pushd /tmp/plugin-validator/pkg/cmd/plugincheck2
117118
go install
118119
popd
119-
plugincheck /tmp/${{ steps.metadata.outputs.archive }} -strict
120+
plugincheck2 -config=/tmp/plugin-validator/config/strict.yaml -strict /tmp/${{ steps.metadata.outputs.archive }}
120121
121122
- name: Create release
122123
id: create_release

0 commit comments

Comments
 (0)