Add GHA with Tests & Lints

This commit is contained in:
arnau
2020-07-24 12:39:57 +02:00
committed by arnaucube
parent a9c77e9607
commit d71dfa7068
3 changed files with 40 additions and 1 deletions

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

@@ -0,0 +1,22 @@
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 ./...