ci: based on github actions

This commit is contained in:
Máximo Cuadros 2020-03-19 17:38:22 +01:00
parent 84efad7693
commit 98cd5cf5e8
No known key found for this signature in database
GPG Key ID: 17A5DFEDC735AE4B

19
.github/workflows/test.yml vendored Normal file
View File

@ -0,0 +1,19 @@
on: [push, pull_request]
name: Test
jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
platform: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v1
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test -v ./...