Skip to content

Commit

Permalink
add github action
Browse files Browse the repository at this point in the history
just run the tests
  • Loading branch information
josharian committed May 25, 2020
1 parent 91eb52d commit afab942
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 @@
name: test

jobs:
test:
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@v2
with:
go-version: 1.14
- name: run go tests
run: |
go test -v ./...
go test -v -race ./...

0 comments on commit afab942

Please sign in to comment.