From 2158fa136293a382441fcdc321cba42e79a429bd Mon Sep 17 00:00:00 2001 From: Neur0toxine Date: Mon, 8 Feb 2021 17:58:51 +0300 Subject: [PATCH] Move to Github Actions & new package name --- .github/workflows/ci.yml | 36 +++++++++++++++++++++++++++++++++ .travis.yml | 11 ---------- README.md | 33 +++++++++--------------------- examples/basic/main.go | 2 +- examples/extension/main.go | 2 +- examples/linked-account/main.go | 2 +- go.mod | 2 +- 7 files changed, 49 insertions(+), 39 deletions(-) create mode 100644 .github/workflows/ci.yml delete mode 100644 .travis.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2e71401 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,36 @@ +name: ci + +on: + push: + branches: + - '**' + tags-ignore: + - '*.*' + pull_request: + +env: + GO111MODULE: on + +jobs: + tests: + name: Tests + runs-on: ubuntu-latest + strategy: + max-parallel: 1 + matrix: + go-version: ['1.11', '1.12', '1.13', '1.14', '1.15'] + steps: + - name: Set up Go ${{ matrix.go-version }} + uses: actions/setup-go@v2 + with: + go-version: ${{ matrix.go-version }} + - name: Check out code into the Go module directory + uses: actions/checkout@v2 + - name: Get dependencies + run: go mod tidy + - name: Tests + run: | + go test -v ./... + go build ./examples/... + - name: Coverage + run: bash <(curl -s https://codecov.io/bash) \ No newline at end of file diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 362d290..0000000 --- a/.travis.yml +++ /dev/null @@ -1,11 +0,0 @@ -language: go -go: - - 1.10.x - - master - -go_import_path: github.com/gwinn/messenger - -install: go get -t ./... -script: - - go test -v ./... - - go build ./examples/... diff --git a/README.md b/README.md index d16f6b1..9463d5a 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,14 @@ -# Messenger [![GoDoc](https://godoc.org/github.com/paked/messenger?status.svg)](https://godoc.org/github.com/paked/messenger) [![Build Status](https://travis-ci.org/paked/messenger.svg?branch=master)](https://travis-ci.org/paked/messenger) +# Messenger +[![Build Status](https://github.com/retailcrm/messenger/workflows/ci/badge.svg)](https://github.com/retailcrm/messenger/actions) +[![Coverage](https://img.shields.io/codecov/c/gh/retailcrm/messenger/master.svg?logo=codecov&logoColor=white)](https://codecov.io/gh/retailcrm/messenger) +[![GitHub release](https://img.shields.io/github/release/retailcrm/messenger.svg?logo=github&logoColor=white)](https://github.com/retailcrm/messenger/releases) +[![Go Report Card](https://goreportcard.com/badge/github.com/retailcrm/messenger)](https://goreportcard.com/report/github.com/retailcrm/messenger) +[![GoLang version](https://img.shields.io/badge/go->=1.11-blue.svg?logo=go&logoColor=white)](https://golang.org/dl/) +[![pkg.go.dev](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white)](https://pkg.go.dev/github.com/retailcrm/messenger) This is a Go library for making bots to be used on Facebook messenger. It is built on the [Messenger Platform](https://developers.facebook.com/docs/messenger-platform). One of the main goals of the project is to implement it in an idiomatic and easy to use fashion. -You can find [examples for this library here](https://github.com/paked/messenger/blob/master/examples/). - -We tag our releases Semver style. +You can find [examples for this library here](https://github.com/retailcrm/messenger/blob/master/examples/). ## Tips @@ -12,28 +16,9 @@ We tag our releases Semver style. - You need a Facebook development app, and a Facebook page in order to build things. - Use [ngrok](https://ngrok.com) to tunnel your locally running bot so that Facebook can reach the webhook. -## Breaking Changes - -In January 2019 we began tagging releases so that the package could be used properly with Go modules. Prior to that we simply maintained the following list to help users migrate between versions, it's staying here for legacy reasons. From now on, however, you should find breaking changes in the notes of a new release. - -`paked/messenger` is a pretty stable library, however, changes will be made which might break backwards compatibility. For the convenience of its users, these are documented here. - -- 06/2/18: Added messaging_type field for message send API request as it is required by FB -- [23/1/17](https://github.com/paked/messenger/commit/1145fe35249f8ce14d3c0a52544e4a4babdc15a4): Updating timezone type to `float64` in profile struct -- [12/9/16](https://github.com/paked/messenger/commit/47f193fc858e2d710c061e88b12dbd804a399e57): Removing unused parameter `text string` from function `(r *Response) GenericTemplate`. -- [20/5/16](https://github.com/paked/messenger/commit/1dc4bcc67dec50e2f58436ffbc7d61ca9da5b943): Leaving the `WebhookURL` field blank in `Options` will yield a URL of "/" instead of a panic. -- [4/5/16](https://github.com/paked/messenger/commit/eb0e72a5dcd3bfaffcfe88dced6d6ac5247f9da1): The URL to use for the webhook is changable in the `Options` struct. - -## Inspiration - -Messenger takes design cues from: - -- [`net/http`](https://godoc.org/net/http) -- [`github.com/nickvanw/ircx`](https://github.com/nickvanw/ircx) - ## Projects -This is a list of projects use `messenger`. If you would like to add your own, submit a [Pull Request](https://github.com/paked/messenger/pulls/new) adding it below. +This is a list of projects use `messenger`. If you would like to add your own, submit a [Pull Request](https://github.com/retailcrm/messenger/pulls/new) adding it below. - [meme-maker](https://github.com/paked/meme-maker) by @paked: A bot which, given a photo and a caption, will create a macro meme. - [drone-facebook](https://github.com/appleboy/drone-facebook) by @appleboy: [Drone.io](https://drone.io) plugin which sends Facebook notifications diff --git a/examples/basic/main.go b/examples/basic/main.go index 1f90d08..1b12ad9 100644 --- a/examples/basic/main.go +++ b/examples/basic/main.go @@ -8,7 +8,7 @@ import ( "os" "time" - "github.com/gwinn/messenger" + "github.com/retailcrm/messenger" ) var ( diff --git a/examples/extension/main.go b/examples/extension/main.go index 5f772f0..8fbf217 100644 --- a/examples/extension/main.go +++ b/examples/extension/main.go @@ -8,7 +8,7 @@ import ( "os" "time" - "github.com/paked/messenger" + "github.com/retailcrm/messenger" ) var ( diff --git a/examples/linked-account/main.go b/examples/linked-account/main.go index be62c6c..67bdc92 100644 --- a/examples/linked-account/main.go +++ b/examples/linked-account/main.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/gwinn/messenger" + "github.com/retailcrm/messenger" ) const ( diff --git a/go.mod b/go.mod index 3f7ff6c..02b5579 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/paked/messenger +module github.com/retailcrm/messenger require ( github.com/davecgh/go-spew v1.1.1 // indirect