Skip to content

Commit 6e57212

Browse files
jkatzcbandy
andauthored
Add automated test workflow
While there needs to be a greater repository of tests built up, this does provide assurance over the existing codebase and encouragement for adding more tests. Co-authored-by: Chris Bandy <[email protected]>
1 parent 0c9905f commit 6e57212

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

.github/workflows/test.yaml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
on:
2+
pull_request:
3+
branches:
4+
- master
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
go-test:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v2
14+
- uses: actions/setup-go@v2
15+
with:
16+
go-version: 1.x
17+
- run: PGOROOT=$(pwd) go test ./...

0 commit comments

Comments
 (0)