build(deps): bump google.golang.org/protobuf from 1.31.0 to 1.34.0 #1133
Workflow file for this run
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: golangci-lint | |
on: | |
push: | |
paths-ignore: | |
- "website/**" | |
branches: | |
- "master" | |
pull_request: | |
paths-ignore: | |
- "website/**" | |
branches: | |
- "master" | |
jobs: | |
lint: | |
name: Lint | |
strategy: | |
fail-fast: true | |
matrix: | |
go: ["1.19.x"] | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{ matrix.go }} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: golangci-lint | |
if: runner.os != 'Windows' | |
uses: golangci/[email protected] | |
with: | |
version: v1.50.1 | |
args: "--out-${NO_FUTURE}format colored-line-number" | |
- name: golangci-lint | |
if: runner.os == 'Windows' | |
uses: golangci/[email protected] | |
env: | |
nofuture: out-format | |
with: | |
version: v1.50.1 | |
args: "--%nofuture% colored-line-number" |