Files
supermarket-api/.github/workflows/supermarket-api-ci.yml
T
Workflow config file is invalid. Please check your config file: model.ReadWorkflow: yaml: line 16: could not find expected ':'

18 lines
399 B
YAML

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
with:
go-version: 1.x
- run: |
export PATH=$PATH:$(go env GOPATH)/bin # temporary fix. See https://github.com/actions/setup-go/issues/14
make unit-test