telegram-bot-api/.github/workflows/test.yml

34 lines
631 B
YAML
Raw Normal View History

2020-07-27 06:07:24 +02:00
name: Test
2020-11-05 19:48:39 +01:00
on:
push:
branches:
- master
- develop
pull_request:
2020-07-27 06:07:24 +02:00
jobs:
build:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
2020-11-05 19:48:39 +01:00
go-version: ^1.15
2020-07-27 06:07:24 +02:00
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: go build -v .
- name: Test
run: go test -coverprofile=coverage.out -covermode=atomic -v .
- name: Upload coverage report
uses: codecov/codecov-action@v1
with:
file: ./coverage.out