Skip to content

Commit

Permalink
Merge pull request #9 from utahta/add-test-go-1-15
Browse files Browse the repository at this point in the history
add test for go-1.15 to CI
  • Loading branch information
utahta authored Nov 25, 2020
2 parents 201e38f + 0b8ec6e commit a720e88
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
11 changes: 11 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@ jobs:
- run:
name: Run tests
command: make test
"go-1.15":
docker:
- image: circleci/golang:1.15
working_directory: /go/src/github.com/utahta/go-cronowriter
steps:
- checkout
- run: make mod
- run:
name: Run tests
command: make test

workflows:
version: 2
Expand All @@ -56,3 +66,4 @@ workflows:
- "go-1.12"
- "go-1.13"
- "go-1.14"
- "go-1.15"
4 changes: 1 addition & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
.PHONY: fmt test

install:
@dep ensure

mod:
go mod download
go mod tidy

fmt:
Expand Down

0 comments on commit a720e88

Please sign in to comment.