Skip to content

Commit

Permalink
CI/CD enhacements
Browse files Browse the repository at this point in the history
  • Loading branch information
xsami committed Oct 15, 2019
1 parent 8211757 commit b307230
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs: # basic units of work in a run
name: Validate service is working
command: |
go test ./...
go test bechmark=. ./...
go test -bench=.
- store_artifacts: # Upload test summary for display in Artifacts: https://circleci.com/docs/2.0/artifacts/
path: /tmp/test-results
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ before_script:
# failing test, we want to see both. Configure golangci-lint with a
# .golangci.yml file at the top level of your repo.
script:
- golangci-lint run # run a bunch of code checkers/linters in parallel
- golangci-lint run --tests=false # run a bunch of code checkers/linters in parallel
- go test ./... # Run all the tests cases
- go test -bench=. ./... # Run all the benchmark test

0 comments on commit b307230

Please sign in to comment.