We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3905ae7 commit 314a83dCopy full SHA for 314a83d
.github/workflows/go.yml
@@ -31,4 +31,4 @@ jobs:
31
- name: Task Build for mage
32
run: task build-gg
33
- name: Test with gg
34
- run: gg test
+ run: ./gg test
Taskfile.yaml
@@ -19,15 +19,16 @@ tasks:
19
20
build-mage:
21
cmds:
22
- - CGO_ENABLED=0 GOOS=linux go build -o mage mage-tools/mage.go
+ - CGO_ENABLED=0 GOOS=linux go build -o ./mage mage-tools/mage.go
23
silent: true
24
25
build-gg:
26
27
- - mage -d mage-tools -compile ../gg
+ - ./mage -d mage-tools -compile ../gg
28
deps:
29
- build-mage
30
+
coverage:
- go test -v -cover ./...
0 commit comments