Skip to content

Commit 3ff5702

Browse files
committed
Setup gotestsum locally
Signed-off-by: Ulysses Souza <[email protected]>
1 parent 7196360 commit 3ff5702

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
branches: [ "main" ]
88

99
jobs:
10-
build:
10+
test:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v3

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
all:
1+
all: setup
22
rm -rf gen
33
antlr -Dlanguage=Go -o gen/fileparser -package fileparser EnvLangFile.g4
44
antlr -Dlanguage=Go -o gen/valueparser -package valueparser EnvLangValue.g4
5-
@gotestsum ./...
5+
@gotestsum --format testname ./...
66

77
setup:
8-
go install gotest.tools/gotestsum@latest
8+
go install gotest.tools/gotestsum@v1.11.0

0 commit comments

Comments
 (0)