Skip to content

ci(deps): bump golangci/golangci-lint-action from 4.0.0 to 5.1.0 #25

ci(deps): bump golangci/golangci-lint-action from 4.0.0 to 5.1.0

ci(deps): bump golangci/golangci-lint-action from 4.0.0 to 5.1.0 #25

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '>=1.12'
- run: go build -v ./...
- run: go test -v ./...
- run: go vet -v ./...