diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 6092f4a..92d4653 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -13,16 +13,19 @@ jobs: build: runs-on: ubuntu-latest + strategy: + matrix: + service: [ "facade", "auth" ,"user" ] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v4 - - name: Set up Go - uses: actions/setup-go@v4 - with: - go-version: '1.23' + - name: Set up Go + uses: actions/setup-go@v4 + with: + go-version: '1.23' - - name: Build - run: go build -v ./... + - name: Build + run: go build -v app/${{ matrix.service }}/... - - name: Test - run: go test -v ./... + - name: Test + run: go test -v app/${{ matrix.service }}/...