Skip to content

Bump golangci/golangci-lint-action from 3.7.0 to 6.0.1 #72

Bump golangci/golangci-lint-action from 3.7.0 to 6.0.1

Bump golangci/golangci-lint-action from 3.7.0 to 6.0.1 #72

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.19
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v $(go list ./... | grep -v /sdk$) -timeout=30s