fix(deps): update google.golang.org/genproto/googleapis/rpc digest to 4ad9e85 #250
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
env: | |
GOPATH: /home/runner/go/ | |
GOPROXY: "https://proxy.golang.org" | |
jobs: | |
build-kas: | |
name: Build kas | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- run: PATH=$PATH:$GOPATH/bin TARGET_DIRECTORY=. make build-kas | |
build-agentk: | |
name: Build agentk | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- run: PATH=$PATH:$GOPATH/bin TARGET_DIRECTORY=. make build-agentk | |
image-kas: | |
name: Build kas image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: PATH=$PATH:$GOPATH/bin TARGET_DIRECTORY=. make docker-kas | |
image-agentk: | |
name: Build agentk image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: PATH=$PATH:$GOPATH/bin TARGET_DIRECTORY=. make docker-agentk | |
test: | |
name: Unit test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- run: PATH=$PATH:$GOPATH/bin make test | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v4 | |
with: | |
go-version-file: go.mod | |
check-latest: true | |
- uses: golangci/golangci-lint-action@v3 | |
with: | |
version: v1.54.2 |