Skip to content

chore(deps): update golangci/golangci-lint-action action to v6 #252

chore(deps): update golangci/golangci-lint-action action to v6

chore(deps): update golangci/golangci-lint-action action to v6 #252

Workflow file for this run

name: Build and Test Client
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.19
- name: Build
run: go build -v ./client/...
- name: Test
run: go test -v ./client/...
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
working-directory: ./client
args: -E gofmt --max-same-issues 0