Fixes #23, adds Tests action

This commit is contained in:
chris
2020-11-23 12:30:11 -05:00
committed by Chris Marshall
parent c1229891a6
commit df74971b73
6 changed files with 85 additions and 18 deletions

25
.github/workflows/test.yaml vendored Normal file
View File

@ -0,0 +1,25 @@
name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install golang
uses: actions/setup-go@v2
with:
go-version: '^1.13.1' # The Go version to download (if necessary) and use.
- name: Run tests
run: |
make test