switch from dep to mod

This commit is contained in:
Nicky Semenza
2021-10-13 08:22:27 -07:00
parent 99c99a8e75
commit 730c286fd5
37 changed files with 2810 additions and 354 deletions
+1
View File
@@ -0,0 +1 @@
.git
+5
View File
@@ -0,0 +1,5 @@
*.test
example/example
docs/_build
docs/doctrees
+3
View File
@@ -0,0 +1,3 @@
[submodule "docs/_sentryext"]
path = docs/_sentryext
url = https://github.com/getsentry/sentry-doc-support
+23
View File
@@ -0,0 +1,23 @@
sudo: false
language: go
go:
- "1.2"
- "1.3"
- "1.4"
- "1.5"
- "1.6"
- "1.7"
- tip
before_install:
- go install -race std
- go get golang.org/x/tools/cmd/cover
- go get -v ./...
script:
- go test -v -race ./...
- go test -v -cover ./...
matrix:
allow_failures:
- go: tip
+13
View File
@@ -0,0 +1,13 @@
# raven [![Build Status](https://travis-ci.org/getsentry/raven-go.png?branch=master)](https://travis-ci.org/getsentry/raven-go)
raven is a Go client for the [Sentry](https://github.com/getsentry/sentry)
event/error logging system.
- [**API Documentation**](https://godoc.org/github.com/getsentry/raven-go)
- [**Usage and Examples**](https://docs.sentry.io/clients/go/)
## Installation
```text
go get github.com/getsentry/raven-go
```
+4
View File
@@ -0,0 +1,4 @@
#!/bin/bash
go test -race ./...
go test -cover ./...
go test -v ./...