Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5272f59

Browse files
committedJul 2, 2019
restore coverage collection
1 parent 2a6b9c6 commit 5272f59

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed
 

‎.drone.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,23 @@ kind: pipeline
22
name: default
33

44
steps:
5-
- name: test
5+
- name: lint
66
image: arduino/arduino-cli:drone-0.1.2
77
commands:
88
# Check if the Go code is properly formatted and run the linter
99
- task check
1010
# Ensure protobufs compile
1111
- task protoc
12-
# Build and test
12+
13+
- name: build
14+
image: arduino/arduino-cli:drone-0.1.2
15+
commands:
1316
- task build
17+
18+
- name: test
19+
image: arduino/arduino-cli:drone-0.1.2
20+
commands:
1421
- task test
15-
- 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

Comments
 (0)
Please sign in to comment.