Skip to content

Commit 46204da

Browse files
committed
ci: add unit testing step
Add step to unit test all packages in the repository. At the moment, no unit tests exist, so tests always pass. Signed-off-by: Victoria Dye <[email protected]>
1 parent 52603ca commit 46204da

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,7 @@ jobs:
2828
cd $GITHUB_WORKSPACE/src/git-bundle-server
2929
go vet ./...
3030
31-
# TODO: add automated tests.
31+
- name: Run unit tests
32+
run: |
33+
cd $GITHUB_WORKSPACE/src/git-bundle-server
34+
go test -v ./...

0 commit comments

Comments
 (0)