Skip to content

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
babarot committed Feb 25, 2020
1 parent bdd53ea commit d67a8ff
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: test

on:
push:
paths:
- '**.go'
- '.github/workflows/test.yml'

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Setup Go
uses: actions/setup-go@v1
with:
go-version: 1.13
- name: Checkout
uses: actions/checkout@v2
- name: Test
run: go test -v -race ./...

0 comments on commit d67a8ff

Please sign in to comment.