summaryrefslogtreecommitdiffstats
path: root/dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci/config.yml
diff options
context:
space:
mode:
Diffstat (limited to 'dependencies/pkg/mod/github.com/creasty/defaults@v1.6.0/.circleci/config.yml')
-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)