Skip to content

build(deps): bump github.com/rs/zerolog from 1.30.0 to 1.31.0 #40

build(deps): bump github.com/rs/zerolog from 1.30.0 to 1.31.0

build(deps): bump github.com/rs/zerolog from 1.30.0 to 1.31.0 #40

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: "1.x"
check-latest: true
id: go
- name: Build
run: go build -race -v ./...
- name: Test
run: go test -race ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3.7.0
with:
version: v1.54.0
skip-pkg-cache: true