Skip to content

Commit

Permalink
github action to run tests
Browse files Browse the repository at this point in the history
  • Loading branch information
drewbailey committed Jul 31, 2020
1 parent 6fb9e94 commit 26d7d76
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: test

on: [push]

jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: go test -v ./...

0 comments on commit 26d7d76

Please sign in to comment.