Skip to content

Commit

Permalink
chore: add test workflow (#20)
Browse files Browse the repository at this point in the history
* Add test workflow

* Update Go version

* Update action trigger
  • Loading branch information
tomarrell authored Oct 1, 2021
1 parent 82c88b3 commit ae1d04a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
on:
push:
branches: [master]
pull_request: {}
name: Test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: "1.17"

- name: Checkout code
uses: actions/checkout@v2

- name: Test
run: go test ./...

0 comments on commit ae1d04a

Please sign in to comment.