Bump golang.org/x/net from 0.0.0-20220722155237-a158d28d115b to 0.17.0 in /e2e #118
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
name: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
- name: lint | |
run: make lint | |
- name: build | |
run: make docker-build | |
- name: unit test | |
run: make test | |
- name: helm lint | |
run: make helm-lint | |
- name: helm template | |
run: make helm-template |