We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
arduino
Learn more about funding links in repositories.
Report abuse
1 parent c51f9ba commit 906357dCopy full SHA for 906357d
Taskfile.yml
@@ -0,0 +1,23 @@
1
+version: '2'
2
+
3
+tasks:
4
+ build:
5
+ desc: Build the project
6
+ cmds:
7
+ - go build -v -i
8
9
+ test:
10
+ desc: Run the full testsuite
11
12
+ - task: test-unit
13
+ - task: test-integration
14
15
+ test-unit:
16
+ desc: Run unit tests only
17
18
+ - go test -short {{ default "-v" .GOFLAGS }} {{ default "./..." .TARGETS }}
19
20
+ test-integration:
21
+ desc: Run integration tests only
22
23
+ - go test -run Integration {{ default "-v" .GOFLAGS }} {{ default "./..." .TARGETS }}
0 commit comments