This repository has been archived by the owner on Oct 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Use Github Actions Co-authored-by: Daniele Santos <[email protected]>
- Loading branch information
1 parent
41e1eff
commit 5c9d942
Showing
6 changed files
with
34 additions
and
31 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
core: ["/cmd"] | ||
legal: ["LICENSE*", "CODE_OF_CONDUCT*"] | ||
config: [".github","build","travis.yml","Makefile","/configs"] | ||
config: [".github","build","Makefile","/configs"] | ||
go-modules: ["go.*"] | ||
readme: ["README*"] | ||
datafiles: ["/fixtures"] |
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,25 @@ | ||
name: CI | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
branches: [master] | ||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: "1.16.x" | ||
- name: Clone repo | ||
uses: actions/checkout@v2 | ||
- name: Install kubectl | ||
run: sudo snap install kubectl --classic | ||
- name: Install kind | ||
run: GO111MODULE=on go get sigs.k8s.io/kind | ||
- name: Go mod download and go tidy | ||
run: make setup | ||
- name: Run tests | ||
run: make test |
This file was deleted.
Oops, something went wrong.
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
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
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