A console script that allows you to easily update multiple git repositories at once
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
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