Moved from Travis to GitHub actions

This commit is contained in:
Deluan
2020-01-04 21:23:24 -05:00
parent 2df05288d3
commit b5be1fbd38
3 changed files with 27 additions and 19 deletions
+26
View File
@@ -0,0 +1,26 @@
name: CI
on: [push]
jobs:
build:
name: Test on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macOS-latest, windows-latest, ubuntu-latest]
steps:
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v1
- name: Download dependencies
run: |
go mod download
- name: Test
run: go test -cover ./... -v