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 ddf7642 commit c36c3d2Copy full SHA for c36c3d2
Taskfile.yml
@@ -0,0 +1,30 @@
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
23
+ - go build arduino.cc/repository/libraries-repository-engine
24
25
+ go:test:
26
+ desc: Run unit tests
27
28
29
30
+ - go test -v ./src/arduino.cc/repository/libraries/...
0 commit comments