Skip to content

Bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 #38

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

Bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 #38

Workflow file for this run

name: Go
on:
pull_request:
push:
branches:
- master
jobs:
test:
strategy:
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
go-version: ['1.17', '1.18']
runs-on: ${{ matrix.platform }}
steps:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v3
- name: Lint
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.46
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...