Skip to content

build(deps): bump go.uber.org/zap from 1.25.0 to 1.26.0 #192

build(deps): bump go.uber.org/zap from 1.25.0 to 1.26.0

build(deps): bump go.uber.org/zap from 1.25.0 to 1.26.0 #192

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@v4
with:
go-version: 1.19
- name: lint
uses: golangci/golangci-lint-action@v3
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