1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Initial pagerduty widget

List people on call, along with the escalation policy
Addresses #159
This commit is contained in:
Sean Smith
2019-02-07 00:52:51 -05:00
parent 884864c970
commit 97790d6168
29 changed files with 2174 additions and 0 deletions

23
vendor/github.com/PagerDuty/go-pagerduty/Makefile generated vendored Normal file
View File

@@ -0,0 +1,23 @@
# SOURCEDIR=.
# SOURCES = $(shell find $(SOURCEDIR) -name '*.go')
# VERSION=$(git describe --always --tags)
# BINARY=bin/pd
# bin: $(BINARY)
# $(BINARY): $(SOURCES)
# go build -o $(BINARY) command/*
.PHONY: build
build:
go get ./...
# go test -v -race -cover ./...
# go tool vet $(SOURCES)
.PHONY: test
test:
go test ./...
deploy:
- curl -sL https://git.io/goreleaser | bash