Add GitHub action to run unit tests on pull requestwqa`

This commit is contained in:
2021-06-17 17:24:37 -04:00
parent 336b21a835
commit 46e72f23a8
+13
View File
@@ -0,0 +1,13 @@
name: Supermarket-API CI Pipeline
on:
pull_request:
branches:
- main
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-go@v1
- run: make unit-test