Skip to content

Bump github.com/rs/zerolog from 1.29.1 to 1.33.0 #8

Bump github.com/rs/zerolog from 1.29.1 to 1.33.0

Bump github.com/rs/zerolog from 1.29.1 to 1.33.0 #8

Workflow file for this run

name: Build
on:
pull_request:
branches:
- "*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: "1.20"
check-latest: true
cache: true
- name: Install swaggo
run: go install github.com/swaggo/swag/cmd/[email protected]
- name: Install swagger
run: go install github.com/go-swagger/go-swagger/cmd/[email protected]
- name: Generate
run: go generate ./...
- name: Build
run: go build -v ./...