Skip to content

Commit

Permalink
Add test workflow (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
ohkinozomu authored Feb 8, 2022
1 parent 3e6fddf commit 07fad67
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Test
on: push
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/setup-go@v2
with:
go-version: '^1.16.0'
- name: Run test
run: make test

0 comments on commit 07fad67

Please sign in to comment.