2019-12-31 11:23:31 +00:00
|
|
|
name: build
|
2019-12-31 11:15:57 +00:00
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2020-08-13 19:47:37 +00:00
|
|
|
go-version: [1.13.x, 1.14.x, 1.15.x]
|
2020-07-29 21:09:38 +00:00
|
|
|
platform: [ubuntu-latest, macos-latest]
|
2019-12-31 11:15:57 +00:00
|
|
|
runs-on: ${{ matrix.platform }}
|
2020-01-08 21:00:11 +00:00
|
|
|
env:
|
|
|
|
GO111MODULE: "on"
|
2019-12-31 11:15:57 +00:00
|
|
|
steps:
|
2020-05-26 20:22:52 +00:00
|
|
|
|
2020-05-18 15:59:37 +00:00
|
|
|
- name: Configure git for private modules
|
|
|
|
env:
|
|
|
|
TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
|
|
|
|
run: git config --global url."https://meowgorithm:${TOKEN}@github.com".insteadOf "https://github.com"
|
2019-12-31 11:15:57 +00:00
|
|
|
|
|
|
|
- name: Install Go
|
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
|
|
|
|
- name: Checkout code
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Download Go modules
|
|
|
|
run: go mod download
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: go build -v ./...
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: go test ./...
|
2020-01-08 21:00:11 +00:00
|
|
|
|
|
|
|
- name: Coverage
|
|
|
|
env:
|
|
|
|
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
run: |
|
|
|
|
go test -race -covermode atomic -coverprofile=profile.cov ./...
|
|
|
|
GO111MODULE=off go get github.com/mattn/goveralls
|
|
|
|
$(go env GOPATH)/bin/goveralls -coverprofile=profile.cov -service=github
|
2020-08-13 19:47:37 +00:00
|
|
|
if: matrix.go-version == '1.15.x' && matrix.platform == 'ubuntu-latest'
|