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 bd12cdb commit 179aa95Copy full SHA for 179aa95
.github/workflows/e2e.yaml
@@ -29,6 +29,11 @@ jobs:
29
${{ runner.os }}-go-
30
- name: Verify
31
run: make verify
32
+ - name: Enable integration tests
33
+ # Only run integration tests for main branch
34
+ # if: github.ref == 'refs/heads/main'
35
+ run: |
36
+ echo "GO_TEST_ARGS=-tags=integration" >> $GITHUB_ENV
37
- name: Run tests
38
run: make test
39
- name: Setup Kubernetes
@@ -56,6 +61,11 @@ jobs:
56
61
uses: actions/setup-go@v2
57
62
with:
58
63
go-version: 1.17.x
64
65
66
67
68
59
69
60
70
71
- name: Prepare
0 commit comments