Skip to content

Commit fc1bb59

Browse files
committed
add go_test step
1 parent 6f4838a commit fc1bb59

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

azure-pipelines.yml

+6
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ jobs:
2323
pool:
2424
vmImage: "vs2017-win2016"
2525
steps:
26+
- script: go test ./...
27+
displayName: go_test
2628
- script: go build -o $(FILE)
2729
displayName: go_build
2830
- script: curl -T $(FILE) -u$(BT_USER):$(BT_KEY) "$(BT_URL)"
@@ -34,6 +36,8 @@ jobs:
3436
pool:
3537
vmImage: "macOS-10.13"
3638
steps:
39+
- script: go test ./...
40+
displayName: go_test
3741
- script: go build -o $(FILE)
3842
displayName: go_build
3943
- script: curl -T $(FILE) -u$(BT_USER):$(BT_KEY) "$(BT_URL)"
@@ -45,6 +49,8 @@ jobs:
4549
pool:
4650
vmImage: "ubuntu-16.04"
4751
steps:
52+
- script: go test ./...
53+
displayName: go_test
4854
- script: go build -o $(FILE)
4955
displayName: go_build
5056
- script: curl -T $(FILE) -u$(BT_USER):$(BT_KEY) "$(BT_URL)"

0 commit comments

Comments
 (0)