Skip to content

Commit 108080e

Browse files
committed
Run each test command in a subshell
1 parent e5af18e commit 108080e

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,10 @@ jobs:
3636
3737
- name: Run tests
3838
run: |
39-
cd backend && go test ./...
40-
cd ../frontend/cli && go test ./...
41-
cd ../shared && go test ./...
42-
cd ../api/go && go test ./...
39+
(cd backend && go test ./...)
40+
(cd frontend/cli && go test ./...)
41+
(cd shared && go test ./...)
42+
(cd api/go && go test ./...)
4343
env:
4444
CGO_ENABLED: 0
4545

0 commit comments

Comments
 (0)