github.com/wata727/tflint@v0.12.2-0.20191013070026-96dd0d36f385/azure-pipelines.yml (about)

     1  # Starter pipeline
     2  # Start with a minimal pipeline that you can customize to build and deploy your code.
     3  # Add steps that build, run tests, deploy, and more:
     4  # https://aka.ms/yaml
     5  
     6  trigger:
     7  - master
     8  
     9  pool:
    10    vmImage: 'windows-2019'
    11  
    12  variables:
    13    GO111MODULE: on
    14  
    15  steps:
    16  - task: GoTool@0
    17    inputs:
    18      version: 1.13
    19  
    20  - script: go version
    21    displayName: 'Go version'
    22  
    23  - script: make build
    24    displayName: 'make build'