Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 #1368
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" | |
- "release/v*" | |
paths-ignore: | |
- "**/*.png" | |
- "**/*.md" | |
pull_request: | |
branches: | |
- "master" | |
- "release/v*" | |
paths-ignore: | |
- "**/*.png" | |
- "**/*.md" | |
jobs: | |
yamllint: | |
name: yamllint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v1 | |
with: | |
config_file: .ci/yamllint.yml | |
strict: true | |
build-and-test: | |
name: build-and-test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.20' | |
- name: Build | |
run: go build -race ./internal/... | |
- name: Test | |
run: go test -race `go list ./internal/... | grep -v e2e` | |
go-lint: | |
name: go-lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v2 | |
- name: golint | |
uses: Jerome1337/[email protected] | |
with: | |
golint-path: './internal/...' | |
- name: Setup Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: '1.20' | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
args: --timeout=10m --tests="false" | |
style-check: | |
name: style-check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Setup Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
- name: Install dependencies | |
run: | | |
go version | |
go install golang.org/x/tools/cmd/goimports@latest | |
- name: gofmt and goimports | |
run: make style-check | |
checkgomod: | |
name: go-mod-check | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v1 | |
with: | |
go-version: '1.20' | |
- run: go mod tidy | |
- name: Check for changes in go.mod or go.sum | |
run: | | |
git diff --name-only --exit-code go.mod || ( echo "Run go tidy" && false ) | |
git diff --name-only --exit-code go.sum || ( echo "Run go tidy" && false ) |