We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 437288f commit 05a8556Copy full SHA for 05a8556
1 file changed
.github/workflows/go.yml
@@ -14,15 +14,18 @@ jobs:
14
build:
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v4
+ - name: Checkout code
18
+ uses: actions/checkout@v4
19
20
- name: Set up Go
- uses: actions/setup-go@v4
21
+ uses: actions/setup-go@v5
22
with:
23
go-version: '1.25'
24
25
- name: Build
- run: go build -v ./...
26
+ working-directory: ./src/TrustMesh-PoC-1
27
+ run: go build ./...
28
29
- name: Test
- run: go test -v ./...
30
31
+ run: go test ./...
0 commit comments