File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+ # See: https://taskfile.dev/#/usage
2
+ version : " 3"
3
+
4
+ env :
5
+ GOPATH : " $(echo $PWD)"
6
+
7
+ tasks :
8
+ go:deps :
9
+ desc : Install dependencies
10
+ cmds :
11
+ - go get github.com/arduino/arduino-modules/git
12
+ - go get github.com/arduino/golang-concurrent-workers
13
+ - go get github.com/blang/semver
14
+ - go get github.com/google/go-github/github
15
+ - go get github.com/stretchr/testify
16
+ - go get github.com/vaughan0/go-ini
17
+
18
+ go:build :
19
+ desc : Build the project
20
+ deps :
21
+ - task : go:deps
22
+ cmds :
23
+ - go build arduino.cc/repository/libraries-repository-engine
24
+
25
+ go:test :
26
+ desc : Run unit tests
27
+ deps :
28
+ - task : go:deps
29
+ cmds :
30
+ - go test -v ./src/arduino.cc/repository/libraries/...
You can’t perform that action at this time.
0 commit comments