From 92d914f5961f50927190b11ac29090fffd2513a5 Mon Sep 17 00:00:00 2001 From: Timo Reimann Date: Sun, 19 Sep 2021 11:33:14 +0200 Subject: [PATCH] Add smoke-test --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b8a3a073..f5fda20a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,6 +25,12 @@ jobs: steps: - checkout - run: go test -race -cover ./... + smoke-test: + docker: + - image: golang:1.17 + steps: + - checkout + - run: go run ./cmd/clusterlint --version workflows: version: 2 all: @@ -33,3 +39,4 @@ workflows: - vet - lint - test + - smoke-test