diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 333b42b..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,39 +0,0 @@ -# Golang CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-go/ for more details -version: 2 -jobs: - build: # test with redistimeseries:edge - docker: - - image: circleci/golang:1.13 - - image: redislabs/redistimeseries:edge - - working_directory: /go/src/github.com/RedisTimeSeries/redistimeseries-go - steps: - - checkout - - run: make checkfmt - - run: make get - - run: - name: "Validate lint" - command: | - curl -sfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh| sh -s -- -b $(go env GOPATH)/bin v1.29.0 - make lint - - run: make test - - run: make coverage - - run: bash <(curl -s https://raw.githubusercontent.com/codecov/codecov-bash/master/codecov) -t ${CODECOV_TOKEN} - -workflows: - version: 2 - commit: - jobs: - - build - nightly: - triggers: - - schedule: - cron: "0 0 * * *" - filters: - branches: - only: - - master - jobs: - - build \ No newline at end of file