summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:36:04 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-28 12:36:04 +0000
commitb09c6d56832eb1718c07d74abf3bc6ae3fe4e030 (patch)
treed2caec2610d4ea887803ec9e9c3cd77136c448ba /dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci
parentInitial commit. (diff)
downloadicingadb-upstream.tar.xz
icingadb-upstream.zip
Adding upstream version 1.1.0.upstream/1.1.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci')
-rw-r--r--dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci/config.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci/config.yml b/dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci/config.yml
new file mode 100644
index 0000000..1ad2fc9
--- /dev/null
+++ b/dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci/config.yml
@@ -0,0 +1,26 @@
+version: 2.1
+
+jobs:
+ build:
+ working_directory: ~/repo
+ docker:
+ - image: circleci/golang:1.15.8
+ steps:
+ - checkout
+ - restore_cache:
+ keys:
+ - go-mod-v4-{{ checksum "go.sum" }}
+ - run:
+ name: Install Dependencies
+ command: go mod download
+ - save_cache:
+ key: go-mod-v4-{{ checksum "go.sum" }}
+ paths:
+ - "/go/pkg/mod"
+ - run: go get -u golang.org/x/lint/golint
+ - run:
+ name: Run tests
+ command: make ci-test
+ - run:
+ name: Upload coverage report
+ command: bash <(curl -s https://codecov.io/bash)