We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bd1542 commit 71272efCopy full SHA for 71272ef
.github/workflows/e2e.yaml
@@ -22,7 +22,7 @@ jobs:
22
- name: Setup Go
23
uses: actions/setup-go@v2-beta
24
with:
25
- go-version: 1.13.x
+ go-version: 1.14.x
26
- name: Setup Kubernetes
27
uses: engineerd/[email protected]
28
- name: Setup Kustomize
@@ -34,7 +34,11 @@ jobs:
34
env:
35
KUBEBUILDER_ASSETS: ${{ github.workspace }}/kubebuilder/bin
36
- name: Check if working tree is dirty
37
- run: git diff --quiet || echo 'run make test and commit changes' && exit 1
+ run: |
38
+ if [[ $(git diff --stat) != '' ]]; then
39
+ echo 'run make test and commit changes'
40
+ exit 1
41
+ fi
42
- name: Build container image
43
run: make docker-build IMG=test/source-controller:latest
44
0 commit comments