mg-transport-core/.github/workflows/ci.yml

36 lines
882 B
YAML

name: ci
on:
push:
branches:
- '**'
tags-ignore:
- '*.*'
pull_request:
env:
GO111MODULE: on
jobs:
tests:
name: Tests
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['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 -cpu 2 -timeout 10s -race -cover -coverprofile=coverage.txt -covermode=atomic
- name: Coverage
run: |
go get -v -u github.com/axw/gocov/gocov
gocov convert ./coverage.txt | gocov report
bash <(curl -s https://codecov.io/bash)