Skip to content

Bump github.com/onsi/gomega from 1.27.9 to 1.27.10 in /src #438

Bump github.com/onsi/gomega from 1.27.9 to 1.27.10 in /src

Bump github.com/onsi/gomega from 1.27.9 to 1.27.10 in /src #438

Workflow file for this run

name: Go
on:
push:
branches:
- v106.x
pull_request:
branches:
- v106.x
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "src/go.mod"
- run: go run github.com/onsi/ginkgo/ginkgo -r -race -randomizeAllSpecs -randomizeSuites -keepGoing
working-directory: src
vet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "src/go.mod"
- run: go vet ./...
working-directory: src
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version-file: "src/go.mod"
- uses: golangci/golangci-lint-action@v3.6.0
with:
args: --config .golangci.yml
working-directory: src