File tree Expand file tree Collapse file tree 2 files changed +26
-0
lines changed
Expand file tree Collapse file tree 2 files changed +26
-0
lines changed Original file line number Diff line number Diff line change 1+ version : 2
2+ jobs :
3+ build-go1.11.4 :
4+ docker :
5+ - image : circleci/golang:1.11.4
6+ working_directory : /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}}
7+ steps :
8+ - checkout
9+ - run : go test -v -race ./...
10+ - run : go build -race cmd/{{REPO_NAME}}/main.go
11+ build-go_latest :
12+ docker :
13+ - image : circleci/golang:latest
14+ working_directory : /go/src/github.com/{{ORG_NAME}}/{{REPO_NAME}}
15+ steps :
16+ - checkout
17+ - run : go test -v -race ./...
18+ - run : go build -race cmd/{{REPO_NAME}}/main.go
19+ workflows :
20+ version : 2
21+ build_and_test :
22+ jobs :
23+ - build-go1.11.4
24+ - build-go_latest
Original file line number Diff line number Diff line change 1+ [ ![ CircleCI] ( https://circleci.com/gh/friendsofgo/gopherapi.svg?style=svg )] ( https://circleci.com/gh/friendsofgo/gopherapi )
2+
13# Gopher API
24The Gopher API, is a simple CRUD API for formative purpose, we're building it while writing the posts of the [ blog] ( https://blog.friendsofgo.tech ) .
35
You can’t perform that action at this time.
0 commit comments