Skip to content

Commit

Permalink
try to use working-directory field to fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
guycipher committed Feb 24, 2025
1 parent 86cb7d8 commit 73cc5c6
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/supermassive_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,35 +21,42 @@ jobs:
with:
go-version: '1.24'

- name: Go into SRC directory
run: cd src

- name: Install dependencies
run: go mod tidy
working-directory: src

- name: Run utility tests
run: go test ./utility -v
working-directory: src

- name: Run pager tests
run: go test ./storage/pager -v
working-directory: src

- name: Run hashtable tests
run: go test ./storage/hashtable -v
working-directory: src

- name: Run client network tests
run: go test ./network/client -v
working-directory: src

- name: Run server network tests
run: go test ./network/server -v
working-directory: src

- name: Run journal tests
run: go test ./journal -v
working-directory: src

- name: Run node replica tests
run: go test ./instance/nodereplica -v
working-directory: src

- name: Run node primary tests
run: go test ./instance/node -v
working-directory: src

- name: Run cluster tests
run: go test ./instance/cluster -v
run: go test ./instance/cluster -v
working-directory: src

0 comments on commit 73cc5c6

Please sign in to comment.