1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 23:06:14 -04:00
v2fly/azure-pipelines.template.yml
2019-02-13 10:32:01 +01:00

21 lines
410 B
YAML

jobs:
- job: ${{ parameters.name }}
timeoutInMinutes: 30
pool:
vmImage: ${{ parameters.vmImage }}
variables:
GOPATH: '$(system.defaultWorkingDirectory)'
GOBIN: '$(GOPATH)/bin'
steps:
- checkout: self
- task: GoTool@0
inputs:
version: '1.11.5'
- script: |
go test -p 1 -v -timeout 30m ./...
workingDirectory: '$(Build.SourcesDirectory)'
displayName: 'Test'