Skip to content

Update go and deps version #220

Update go and deps version

Update go and deps version #220

Workflow file for this run

---
name: Go
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@v5
with:
go-version: 1.23.2
- name: lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --enable-all
- name: build
run: go build -v ./...
- name: test
run: |
go mod vendor
go test -mod=vendor --race -gcflags=-l -v -coverprofile .coverage.out ./...
rm -rf .coverage.out.tmp
go tool cover -func .coverage.out