Resumen

Plantilla YML.

YML para azure function

recuerde que puede exportar e importar yml en DevOps

Files

documentoIdentificacion-Functions-pruebas-IC (1).yml

Agent Job

Untitled

jobs:
- job: Job_1
  displayName: Agent job 1
  pool:
    vmImage: ubuntu-20.04

Build Extensions

Untitled

steps:
  - checkout: self
  - task: Bash@3
    displayName: Build extensions
    inputs:
      targetType: inline
      script: >-
        if [ -f extensions.csproj ]

        then
            dotnet build extensions.csproj --output ./bin
        fi

Versión Python

Untitled