Skip to content

Commit

Permalink
Merge pull request #1 from davidheryanto/add-github-action-to-run-test
Browse files Browse the repository at this point in the history
Add Github Action to run automated test
  • Loading branch information
davidheryanto authored Sep 29, 2020
2 parents 233ab2f + 88b49f3 commit 101a992
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.14
uses: actions/setup-go@v2
with:
go-version: ^1.14

- name: Check out code
uses: actions/checkout@v2

- name: Run test
run: make test

- name: Lint codes
run: make lint

0 comments on commit 101a992

Please sign in to comment.