mirror of
https://github.com/moul/sshportal.git
synced 2024-11-15 12:46:17 +08:00
17 lines
No EOL
420 B
YAML
17 lines
No EOL
420 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/golang:1.8
|
|
# - image: circleci/mysql:9.4
|
|
|
|
working_directory: /go/src/github.com/moul/sshportal
|
|
steps:
|
|
- checkout
|
|
- run: make install
|
|
- run: go get -v -t .
|
|
- run: make test
|
|
# - run: make integration
|
|
- run: go get -u github.com/alecthomas/gometalinter
|
|
- run: gometalinter --install
|
|
- run: make lint |