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

Commit

Permalink
enable tests in .travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chrischdi committed Aug 27, 2018
1 parent 49137fd commit eb06a69
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
language: go

go:
- 1.10.x
- 1.11.x

install: go get -v ./...

before_script: chmod +x $TRAVIS_BUILD_DIR/build.sh

script: $TRAVIS_BUILD_DIR/build.sh
script:
- $TRAVIS_BUILD_DIR/build.sh
- go test -v ./...

deploy:
provider: releases
Expand All @@ -24,4 +26,4 @@ deploy:
skip_cleanup: true
overwrite: true
on:
tags: true
tags: true
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
# v0.4.1
* enable tests in .travis.yml

# v0.4.0
* refactor: split out functions readFile readKubeconfig and mergeKubeconfig for better testing possibilities
* tests: write unit tests readfile, readKubeconfig and mergeKubeconfig
Expand Down

0 comments on commit eb06a69

Please sign in to comment.