Skip to content

Commit 246e1c4

Browse files
committed
third time is the charm
1 parent a2008e1 commit 246e1c4

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

.github/workflows/backend.yml

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,18 @@ jobs:
1616
api_test:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v4
2020

21-
- name: Set up Go
22-
uses: actions/setup-go@v4
23-
with:
24-
go-version: '1.24.3'
25-
cache-dependency-path: subdir/go.sum
21+
- name: Set up Go
22+
uses: actions/setup-go@v4
23+
with:
24+
go-version: '1.24.3'
25+
cache-dependency-path: MyMusicBoxApi/go.sum # Adjusted path for go.sum
2626

27-
- name: Test
28-
working-directory: MyMusicBoxApi
29-
run: go test -v ./...
27+
- name: Install dependencies
28+
working-directory: MyMusicBoxApi
29+
run: go mod download
30+
31+
- name: Test
32+
working-directory: MyMusicBoxApi
33+
run: go test -v ./...

0 commit comments

Comments
 (0)