Skip to content
This repository was archived by the owner on Sep 30, 2024. It is now read-only.

Commit 63bb31d

Browse files
committed
chore(): updated pipeline
1 parent a5b6d4d commit 63bb31d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/gotest.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@ jobs:
88
test:
99
name: Run tests
1010
runs-on: ubuntu-latest
11+
defaults:
12+
run:
13+
working-directory: ./pg_stream
1114

1215
steps:
1316
- uses: actions/checkout@v3
@@ -17,5 +20,8 @@ jobs:
1720
with:
1821
go-version: "1.22"
1922

23+
- name: Install dependencies
24+
run: go mod download
25+
2026
- name: Run tests
21-
run: cd pg_stream && go mod tidy && go test -v ./...
27+
run: go test -v ./...

0 commit comments

Comments
 (0)