Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.

Commit 05a8556

Browse files
authored
Update go.yml
1 parent 437288f commit 05a8556

1 file changed

Lines changed: 7 additions & 4 deletions

File tree

.github/workflows/go.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,18 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17-
- uses: actions/checkout@v4
17+
- name: Checkout code
18+
uses: actions/checkout@v4
1819

1920
- name: Set up Go
20-
uses: actions/setup-go@v4
21+
uses: actions/setup-go@v5
2122
with:
2223
go-version: '1.25'
2324

2425
- name: Build
25-
run: go build -v ./...
26+
working-directory: ./src/TrustMesh-PoC-1
27+
run: go build ./...
2628

2729
- name: Test
28-
run: go test -v ./...
30+
working-directory: ./src/TrustMesh-PoC-1
31+
run: go test ./...

0 commit comments

Comments
 (0)