Skip to content

Commit ebf8e64

Browse files
committedApr 18, 2023
ci: makefiles
1 parent 982f4fa commit ebf8e64

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed
 

‎Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
test:
2+
@./go.test.sh
3+
4+
coverage:
5+
@./go.coverage.sh
6+
7+
test_fast:
8+
go test ./...
9+
10+
tidy:
11+
go mod tidy
12+
13+
.PHONY: tidy coverage test test_fast

‎go.coverage.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
go test -race -v -coverpkg=./... -coverprofile=profile.out ./...
6+
go tool cover -func profile.out

‎go.test.sh

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
#!/usr/bin/env bash
2+
3+
set -e
4+
5+
echo "test"
6+
go test --timeout 5m ./...
7+
8+
echo "test -race"
9+
go test --timeout 5m -race ./...

0 commit comments

Comments
 (0)