name: Test
|
|
on: [ push, pull_request ]
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [ 1.13.x, 1.14.x ]
|
|
goarch: [ "amd64", "386" ]
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
env:
|
|
GOARCH: ${{ matrix.goarch }}
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Test
|
|
env:
|
|
GOARCH: ${{ matrix.goarch }}
|
|
run: go test ./...
|