Skip to content
This repository has been archived by the owner on Jun 26, 2023. It is now read-only.

Commit

Permalink
Add test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
babarot committed Feb 10, 2020
1 parent df59d0e commit 6c0a38e
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: Test
on:
- push
jobs:
test:
name: Run test workflow
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 6c0a38e

Please sign in to comment.