azure-pipelines.yml 665 B

123456789101112131415161718192021222324252627
  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. trigger:
  6. - master
  7. pool:
  8. vmImage: ubuntu-latest
  9. steps:
  10. - task: AdvancedSecurity-Codeql-Init@1
  11. inputs:
  12. languages: 'csharp'
  13. - task: github/codeql-action/autobuild@v2
  14. - script: echo Hello, world!
  15. displayName: 'Run a one-line script'
  16. - script: |
  17. echo Add other tasks to build, test, and deploy your project.
  18. echo See https://aka.ms/yaml
  19. displayName: 'Run a multi-line script'
  20. - task: AdvancedSecurity-Dependency-Scanning@1
  21. - task: AdvancedSecurity-Codeql-Analyze@1