github.com/Azure/aad-pod-identity@v1.8.17/.pipelines/templates/unit-test.yml (about) 1 jobs: 2 - job: scan_images 3 timeoutInMinutes: 15 4 workspace: 5 clean: all 6 steps: 7 - template: scan-images.yml 8 - job: lint 9 timeoutInMinutes: 15 10 workspace: 11 clean: all 12 steps: 13 - script: make lint 14 displayName: golangci-lint 15 - script: make helm-lint 16 displayName: helm lint 17 - job: unit_test 18 timeoutInMinutes: 20 19 cancelTimeoutInMinutes: 5 20 workspace: 21 clean: all 22 steps: 23 - script: make unit-test 24 displayName: Run unit tests