Skip to content

Commit 284b093

Browse files
authored
Merge branch 'develop' into develop
2 parents 0b0e5c0 + 53d566b commit 284b093

File tree

15 files changed

+4736
-1288
lines changed

15 files changed

+4736
-1288
lines changed

.github/workflows/test.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- develop
8+
pull_request:
9+
10+
jobs:
11+
build:
12+
name: Test
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Set up Go 1.x
16+
uses: actions/setup-go@v2
17+
with:
18+
go-version: ^1.15
19+
id: go
20+
21+
- name: Check out code into the Go module directory
22+
uses: actions/checkout@v2
23+
24+
- name: Build
25+
run: go build -v .
26+
27+
- name: Test
28+
run: go test -coverprofile=coverage.out -covermode=atomic -v .
29+
30+
- name: Upload coverage report
31+
uses: codecov/codecov-action@v1
32+
with:
33+
file: ./coverage.out

.travis.yml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![GoDoc](https://godoc.org/github.com/go-telegram-bot-api/telegram-bot-api?status.svg)](http://godoc.org/github.com/go-telegram-bot-api/telegram-bot-api)
44
[![Travis](https://travis-ci.org/go-telegram-bot-api/telegram-bot-api.svg)](https://travis-ci.org/go-telegram-bot-api/telegram-bot-api)
55

6-
All methods are fairly self explanatory, and reading the godoc page should
6+
All methods are fairly self explanatory, and reading the [godoc](http://godoc.org/github.com/go-telegram-bot-api/telegram-bot-api) page should
77
explain everything. If something isn't clear, open an issue or submit
88
a pull request.
99

0 commit comments

Comments
 (0)