forked from carvel-dev/kapp
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7bccb35
commit 6e8dff8
Showing
2 changed files
with
30 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: test-gh | ||
on: [push] | ||
jobs: | ||
test-all: | ||
name: Test GH | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go 1.12 | ||
uses: actions/setup-go@v1 | ||
with: | ||
go-version: 1.12 | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v1 | ||
with: | ||
path: src/github.com/k14s/kapp | ||
- name: Run Tests | ||
run: | | ||
set -e -x | ||
export GOPATH=$(echo `pwd`/../../../../) | ||
# install ytt for build | ||
wget -O- https://k14s.io/install.sh | bash | ||
./hack/build.sh | ||
./hack/test.sh | ||
# TODO no e2e since there is no k8s env |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters