Skip to content

Commit

Permalink
.github: add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
danp committed May 16, 2020
1 parent ed5f18a commit bb6573c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: [push, pull_request]
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ^1.14.3
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...

0 comments on commit bb6573c

Please sign in to comment.