Add Barebones github actions test

pull/121/head
John Barton 2020-11-11 11:19:52 +11:00
parent 0da8ce72f0
commit 5451d82b77
2 changed files with 18 additions and 11 deletions

18
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.15', '1.14' ]
name: Go ${{ matrix.go }} Tests
steps:
- uses: actions/checkout@v2
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- run: go test

View File

@ -1,11 +0,0 @@
arch:
- amd64
- ppc64le
language: go
go:
- 1.x
os:
- linux
- osx