We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7196360 commit 3ff5702Copy full SHA for 3ff5702
.github/workflows/ci.yml
@@ -7,7 +7,7 @@ on:
7
branches: [ "main" ]
8
9
jobs:
10
- build:
+ test:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v3
Makefile
@@ -1,8 +1,8 @@
1
-all:
+all: setup
2
rm -rf gen
3
antlr -Dlanguage=Go -o gen/fileparser -package fileparser EnvLangFile.g4
4
antlr -Dlanguage=Go -o gen/valueparser -package valueparser EnvLangValue.g4
5
- @gotestsum ./...
+ @gotestsum --format testname ./...
6
setup:
- go install gotest.tools/gotestsum@latest
+ go install gotest.tools/gotestsum@v1.11.0
0 commit comments