Skip to content

Commit c5823ec

Browse files
committed
updated yml file
1 parent 382cbaf commit c5823ec

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/go-tests.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,12 @@ jobs:
2121
with:
2222
go-version: '^1.16'
2323

24-
- name: Navigate to singly directory
25-
run: cd go/LinkedList/singly
24+
- name: Set up dependencies
25+
run: |
26+
cd go/LinkedList/singly
27+
go mod tidy
2628
2729
- name: Run tests
28-
run: go test
30+
run: |
31+
cd go/LinkedList/singly
32+
go test -v .

0 commit comments

Comments
 (0)