2020-01-29 08:54:22 +05:30
|
|
|
name: Run Tests
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-09-12 10:57:58 +02:00
|
|
|
paths:
|
|
|
|
- '**.go'
|
2020-11-11 10:19:05 +01:00
|
|
|
- 'go.*'
|
|
|
|
- '_fixture/**'
|
|
|
|
- '.github/**'
|
2020-01-29 08:54:22 +05:30
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
2020-09-12 10:57:58 +02:00
|
|
|
paths:
|
|
|
|
- '**.go'
|
2020-11-11 10:19:05 +01:00
|
|
|
- 'go.*'
|
|
|
|
- '_fixture/**'
|
|
|
|
- '.github/**'
|
2020-01-29 08:54:22 +05:30
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
2020-11-20 17:11:08 +05:30
|
|
|
go: [1.12, 1.13, 1.14, 1.15]
|
2020-01-29 08:54:22 +05:30
|
|
|
name: ${{ matrix.os }} @ Go ${{ matrix.go }}
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
|
|
- name: Set up Go ${{ matrix.go }}
|
|
|
|
uses: actions/setup-go@v1
|
|
|
|
with:
|
|
|
|
go-version: ${{ matrix.go }}
|
|
|
|
|
|
|
|
- name: Set GOPATH and PATH
|
|
|
|
run: |
|
2020-11-19 20:44:00 -08:00
|
|
|
echo "GOPATH=$(dirname $GITHUB_WORKSPACE)" >> $GITHUB_ENV
|
|
|
|
echo "$(dirname $GITHUB_WORKSPACE)/bin" >> $GITHUB_PATH
|
2020-01-29 08:54:22 +05:30
|
|
|
shell: bash
|
|
|
|
|
2020-11-19 20:44:00 -08:00
|
|
|
- name: Set build variables
|
|
|
|
run: |
|
|
|
|
echo "GOPROXY=https://proxy.golang.org" >> $GITHUB_ENV
|
|
|
|
echo "GO111MODULE=on" >> $GITHUB_ENV
|
|
|
|
|
2020-01-29 08:54:22 +05:30
|
|
|
- name: Checkout Code
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
ref: ${{ github.ref }}
|
|
|
|
|
|
|
|
- name: Install Dependencies
|
|
|
|
run: go get -v golang.org/x/lint/golint
|
|
|
|
|
|
|
|
- name: Run Tests
|
|
|
|
run: |
|
|
|
|
golint -set_exit_status ./...
|
|
|
|
go test -race --coverprofile=coverage.coverprofile --covermode=atomic ./...
|
|
|
|
|
|
|
|
- name: Upload coverage to Codecov
|
|
|
|
if: success() && matrix.go == 1.13 && matrix.os == 'ubuntu-latest'
|
|
|
|
uses: codecov/codecov-action@v1
|
|
|
|
with:
|
|
|
|
token:
|
|
|
|
fail_ci_if_error: false
|