Skip to content

Bump github.com/rs/zerolog from 1.29.1 to 1.30.0 #154

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

Bump github.com/rs/zerolog from 1.29.1 to 1.30.0 #154

Workflow file for this run

name: Build
on:
- push
- pull_request
jobs:
test-build:
name: Test & Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.18
uses: actions/setup-go@v2
with:
go-version: '1.18.4'
- name: Set GOPATH and PATH
run: |
echo "GOPATH=$(dirname $GITHUB_WORKSPACE)" >> $GITHUB_ENV
echo "$(dirname $GITHUB_WORKSPACE)/bin" >> $GITHUB_PATH
shell: bash
- name: Check out code
uses: actions/checkout@v2
- name: Update build dependencies
run: make setup
- name: Check quality code
run: make lint
- name: Test
run: make test
- name: Build
run: make bin