Skip to content

Commit 5fa9f64

Browse files
committed
fix README
1 parent 4f91ae3 commit 5fa9f64

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,6 @@
1515
# vendor/
1616

1717
*.txt
18+
19+
*.html
20+
.vscode

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ We have also done some basic benchmarking with some of the most commonly used pa
1313

1414
- [Stack (using linked list)](stack/README.md)
1515
- [Queue (using linked list)](queue/README.md)
16-
- [Single linked list](list/singleLinkedList_README)
16+
- [Single linked list](list/singleLinkedList_README.md)

makefile

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
.PHONY: test
1+
.PHONY: test test-coverage
22

33
test:
44
go test ./...
5+
6+
test-coverage:
7+
go test ./... -coverprofile coverage.txt -covermode=atomic
8+
go tool cover -html=coverage.txt -o coverage.html

0 commit comments

Comments
 (0)