Skip to content

Commit

Permalink
fix: Fix ci pipeline for running tests sequentially without cache
Browse files Browse the repository at this point in the history
  • Loading branch information
meysamhadeli committed Feb 5, 2023
1 parent 993d574 commit 2a8a3c6
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,22 +32,23 @@ jobs:
working-directory: ./internal/services/identity_service
run: go test -v ./...

- name: identity_service test
working-directory: ./internal/services/identity_service
run: go test -v ./...

- name: product_service build
working-directory: ./internal/services/product_service
run: go build -v ./...

- name: product_service test
working-directory: ./internal/services/product_service
run: go test -v ./...

- name: inventory_service build
working-directory: ./internal/services/inventory_service
run: go build -v ./...

- name: product_service test
working-directory: ./internal/services/product_service
run: go test -p 1 -count 1 ./...

- name: identity_service test
working-directory: ./internal/services/identity_service
run: go test -p 1 -count 1 ./...

- name: inventory_service test
working-directory: ./internal/services/inventory_service
run: go test -v ./...
run: go test -p 1 -count 1 ./...

0 comments on commit 2a8a3c6

Please sign in to comment.