mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-04 09:17:32 -05:00
17 lines
318 B
YAML
17 lines
318 B
YAML
jobs:
|
|
- job: ${{ parameters.name }}
|
|
timeoutInMinutes: 30
|
|
|
|
pool:
|
|
vmImage: ${{ parameters.vmImage }}
|
|
|
|
steps:
|
|
- checkout: self
|
|
- task: GoTool@0
|
|
inputs:
|
|
version: '1.12'
|
|
- script: |
|
|
go test -p 1 -v -timeout 30m ./...
|
|
workingDirectory: '$(Build.SourcesDirectory)'
|
|
displayName: 'Test'
|