xtf-runner: Refactor get_all_test_info() #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CodeQL | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '30 12 * * 3' | |
jobs: | |
analyse: | |
# https://github.com/orgs/community/discussions/26409 (private secrets): | |
# Run this job if the feature branch is in the main repo (not in a fork): | |
if: github.event.pull_request.head.repo.full_name == github.repository | |
strategy: | |
matrix: | |
lang: [ 'cpp', 'python' ] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: github/codeql-action/init@v2 | |
with: | |
languages: ${{matrix.lang}} | |
queries: security-and-quality | |
- uses: github/codeql-action/autobuild@v2 | |
- uses: github/codeql-action/analyze@v2 |