Skip to content

Finalize testing workflow #4

Finalize testing workflow

Finalize testing workflow #4

Workflow file for this run

name: Run Unit Test
on:
pull_request:
branches: ["master"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
microservices:
- user_service
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21.1"
- name: Install Goose
run: curl -fsSL https://github.com/raw/pressly/goose/master/install.sh | sh
- name: Execute Test Cases
run: |

Check failure on line 25 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 25
echo "Running Test Case for: "${{ matrix.microservices }}
cd ./src/${{ matrix.microservices }}
bash run_unit_test.sh