Skip to content

fix(deps): update module github.com/getsentry/sentry-go to v0.29.1 #44

fix(deps): update module github.com/getsentry/sentry-go to v0.29.1

fix(deps): update module github.com/getsentry/sentry-go to v0.29.1 #44

Workflow file for this run

---
name: CI
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: lint
uses: reviewdog/action-golangci-lint@v2
test:
strategy:
matrix:
go_version:
- 1.15.x
- 1.16.x
- 1.17.x
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go_version }}
- name: test
run: go test -v -race -cover -covermode=atomic ./...