Skip to content

Bump github.com/mia-platform/glogger/v4 from 4.1.0 to 4.2.0 #101

Bump github.com/mia-platform/glogger/v4 from 4.1.0 to 4.2.0

Bump github.com/mia-platform/glogger/v4 from 4.1.0 to 4.2.0 #101

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
tags: '*'
pull_request:
branches: [ master ]
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install dependencies
run: go mod download
- name: Build
run: go build -v .
- name: Run Unit tests
run: go test -race ./...