A console script that allows you to easily update multiple git repositories at once
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

37 rader
688 B

  1. name: "CodeQL"
  2. on:
  3. push:
  4. branches: [ "develop", "master" ]
  5. schedule:
  6. - cron: '38 0 * * 5'
  7. jobs:
  8. analyze:
  9. name: Analyze
  10. runs-on: ubuntu-latest
  11. permissions:
  12. actions: read
  13. contents: read
  14. security-events: write
  15. strategy:
  16. fail-fast: false
  17. matrix:
  18. language: [ 'python' ]
  19. steps:
  20. - name: Checkout repository
  21. uses: actions/checkout@v3
  22. - name: Initialize CodeQL
  23. uses: github/codeql-action/init@v2
  24. with:
  25. languages: ${{ matrix.language }}
  26. - name: Autobuild
  27. uses: github/codeql-action/autobuild@v2
  28. - name: Perform CodeQL Analysis
  29. uses: github/codeql-action/analyze@v2