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.

27 lines
582B

  1. name: codeql
  2. on:
  3. push:
  4. pull_request:
  5. schedule:
  6. - cron: '0 5 * * 3'
  7. jobs:
  8. codeql:
  9. runs-on: ubuntu-20.04
  10. container:
  11. image: "registry.gitlab.com/offa/docker-images/gcc-10:stable"
  12. name: "CodeQL"
  13. steps:
  14. - name: Checkout
  15. uses: actions/checkout@master
  16. - name: CodeQL Initialization
  17. uses: github/codeql-action/init@v1
  18. with:
  19. languages: cpp
  20. queries: +security-and-quality
  21. - name: Build
  22. run: script/ci_build.sh
  23. - name: CodeQL Analysis
  24. uses: github/codeql-action/analyze@v1