Skip to content
This repository has been archived by the owner on Dec 21, 2023. It is now read-only.

Commit

Permalink
Merge pull request #102 from keptn/release-0.3.0
Browse files Browse the repository at this point in the history
Release 0.3.0
  • Loading branch information
johannes-b authored Oct 29, 2019
2 parents f5c220b + 0542530 commit 75f8571
Show file tree
Hide file tree
Showing 58 changed files with 2,771 additions and 1,049 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,9 @@
# Output of the go coverage tool, specifically when used with LiteIDE
*.out

.idea/
.code/

**/.DS_Store

vendor/
25 changes: 25 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# use the latest ubuntu environment (18.04) available on travis
dist: xenial

language: go

go:
- 1.12.x

# Don't email me the results of the test runs.
notifications:
email: false

env:
- GO111MODULE=on

# enable module cache
cache:
directories:
- $GOPATH/pkg/mod

# script always runs to completion (set +e). If we have linter issues AND a
# failing test, we want to see both. Configure golangci-lint with a
# .golangci.yml file at the top level of your repo.
script:
- go test -v -race ./... # Run all the tests with the race detector enabled
Loading

0 comments on commit 75f8571

Please sign in to comment.