diff --git a/.github/workflows/supermarket-api-ci.yml b/.github/workflows/supermarket-api-ci.yml new file mode 100644 index 0000000..95afbc9 --- /dev/null +++ b/.github/workflows/supermarket-api-ci.yml @@ -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