* Move to go modules * Move go.mod in root directory * Update Readme * Remove golang.org/x/tools from go.mod * Remove go list from targets * Set go version to 1.12 * Update Makefile Co-Authored-By: hanzei <16541325+hanzei@users.noreply.github.com> * Update dependencies * Fix build
27 lines
368 B
YAML
27 lines
368 B
YAML
version: 2.1
|
|
executors:
|
|
default:
|
|
docker:
|
|
- image: circleci/golang:1.12-node
|
|
|
|
jobs:
|
|
lint:
|
|
executor:
|
|
name: default
|
|
steps:
|
|
- checkout
|
|
- run: make check-style
|
|
|
|
test:
|
|
executor:
|
|
name: default
|
|
steps:
|
|
- checkout
|
|
- run: make test
|
|
|
|
workflows:
|
|
version: 2
|
|
untagged-build:
|
|
jobs:
|
|
- lint
|
|
- test
|