Skip to content
This repository has been archived by the owner on Sep 15, 2024. It is now read-only.

Bump github.com/TheZeroSlave/zapsentry from 1.19.0 to 1.20.2 #196

Bump github.com/TheZeroSlave/zapsentry from 1.19.0 to 1.20.2

Bump github.com/TheZeroSlave/zapsentry from 1.19.0 to 1.20.2 #196

Workflow file for this run

name: pull-request
on:
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
env:
CGO_ENABLED: "1"
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- uses: actions/setup-go@v3
with:
go-version: 'stable'
cache: true
- run: go mod download
- run: go test -cover -coverprofile=coverage.txt -covermode=atomic ./...