We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cb81050 commit 8920396Copy full SHA for 8920396
1 file changed
.github/workflows/e2e.yaml
@@ -29,8 +29,12 @@ jobs:
29
${{ runner.os }}-go-
30
- name: Verify
31
run: make verify
32
+ - name: Enable integration tests
33
+ # if: endsWith(github.ref, '/main')
34
+ run: |
35
+ echo "::setenv GO_BUILD_ARGS=-tags=integration"
36
- name: Run tests
- run: make test
37
+ run: make test GO_BUILD_ARGS=$GO_BUILD_ARGS
38
- name: Setup Kubernetes
39
uses: engineerd/setup-kind@v0.5.0
40
with:
0 commit comments