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
There was an error while loading. Please reload this page.
1 parent 2a6b9c6 commit 5272f59Copy full SHA for 5272f59
.drone.yml
@@ -2,14 +2,23 @@ kind: pipeline
2
name: default
3
4
steps:
5
-- name: test
+- name: lint
6
image: arduino/arduino-cli:drone-0.1.2
7
commands:
8
# Check if the Go code is properly formatted and run the linter
9
- task check
10
# Ensure protobufs compile
11
- task protoc
12
- # Build and test
+
13
+- name: build
14
+ image: arduino/arduino-cli:drone-0.1.2
15
+ commands:
16
- task build
17
18
+- name: test
19
20
21
- task test
- - task test-legacy
22
+ - task test-legacy
23
+ - bash <(curl -s https://codecov.io/bash) -cF unit -f '*_unit.txt'
24
+ - bash <(curl -s https://codecov.io/bash) -cF integ -f '*_integ.txt'
0 commit comments