Bump golang.org/x/net from 0.0.0-20211015210444-4f30a5c0130f to 0.17.… #131
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: unit-test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
unit-test: | |
name: unit-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.19 | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: Setup kubebuilder | |
run: | | |
make kubebuilder | |
- name: Build | |
run: | | |
make build | |
- name: Test | |
run: | | |
make test | |
- name: Upload to Codecov | |
uses: codecov/codecov-action@v1 | |
with: | |
file: ./coverage.txt |