Skip to content

Commit

Permalink
Splits Test Jobs (#145)
Browse files Browse the repository at this point in the history
Signed-off-by: Daneyon Hansen <[email protected]>
  • Loading branch information
danehans authored Dec 2, 2020
1 parent f341fae commit 319e439
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion .github/workflows/prbuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ env:
GOPROXY: https://proxy.golang.org/
jobs:
test-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '1.15.2'
- name: deps
run: |
./hack/actions/install-kubernetes-toolchain.sh $GITHUB_WORKSPACE/bin
echo "$GITHUB_WORKSPACE/bin" >> $GITHUB_PATH
echo "/usr/local/kubebuilder/bin" >> $GITHUB_PATH
- name: test-e2e
run: |
go mod vendor
make test
test-e2e-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand All @@ -21,7 +37,7 @@ jobs:
- name: test
run: |
go mod vendor
make local-cluster test test-e2e
make local-cluster test-e2e
codespell:
name: Codespell
runs-on: ubuntu-latest
Expand Down

0 comments on commit 319e439

Please sign in to comment.