Skip to content

chore(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 #268

chore(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0

chore(deps): bump golangci/golangci-lint-action from 3.6.0 to 3.7.0 #268

Workflow file for this run

name: lint-and-test
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint-test-and-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v4
with:
go-version: 1.19
- name: lint
uses: golangci/[email protected]
with:
github-token: ${{ github.token }}
- name: test
run: go test -v -race ./...
- name: build
run: go build .