Bram Moolenaar | fa79be6 | 2020-10-02 10:29:45 +0200 | [diff] [blame] | 1 | # For most projects, this workflow file will not need changing; you simply need |
| 2 | # to commit it to your repository. |
| 3 | # |
| 4 | # You may wish to alter this file to override the set of languages analyzed, |
| 5 | # or to provide custom queries or build logic. |
| 6 | name: "CodeQL" |
| 7 | |
| 8 | on: |
| 9 | push: |
| 10 | branches: [master] |
| 11 | pull_request: |
| 12 | # The branches below must be a subset of the branches above |
| 13 | branches: [master] |
| 14 | schedule: |
| 15 | - cron: '0 18 * * 1' |
| 16 | |
| 17 | jobs: |
| 18 | analyze: |
| 19 | name: Analyze |
| 20 | runs-on: ubuntu-latest |
| 21 | |
| 22 | strategy: |
| 23 | fail-fast: false |
| 24 | matrix: |
| 25 | # Override automatic language detection by changing the below list |
| 26 | # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python'] |
| 27 | language: ['cpp', 'python'] |
| 28 | # Learn more... |
| 29 | # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection |
| 30 | |
| 31 | steps: |
| 32 | - name: Checkout repository |
| 33 | uses: actions/checkout@v2 |
Bram Moolenaar | fa79be6 | 2020-10-02 10:29:45 +0200 | [diff] [blame] | 34 | |
Bram Moolenaar | fa79be6 | 2020-10-02 10:29:45 +0200 | [diff] [blame] | 35 | # Initializes the CodeQL tools for scanning. |
| 36 | - name: Initialize CodeQL |
| 37 | uses: github/codeql-action/init@v1 |
| 38 | with: |
| 39 | languages: ${{ matrix.language }} |
| 40 | # If you wish to specify custom queries, you can do so here or in a config file. |
Bram Moolenaar | 89a9c15 | 2021-08-29 21:55:35 +0200 | [diff] [blame^] | 41 | # By default, queries listed here will override any specified in a config file. |
Bram Moolenaar | fa79be6 | 2020-10-02 10:29:45 +0200 | [diff] [blame] | 42 | # Prefix the list here with "+" to use these queries and those in the config file. |
| 43 | # queries: ./path/to/local/query, your-org/your-repo/queries@main |
| 44 | |
| 45 | # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). |
| 46 | # If this step fails, then you should remove it and run the build manually (see below) |
| 47 | - name: Autobuild |
| 48 | uses: github/codeql-action/autobuild@v1 |
| 49 | |
| 50 | # âšī¸ Command-line programs to run using the OS shell. |
| 51 | # đ https://git.io/JvXDl |
| 52 | |
| 53 | # âī¸ If the Autobuild fails above, remove it and uncomment the following three lines |
| 54 | # and modify them (or add more) to build your code if your project |
| 55 | # uses a compiled language |
| 56 | |
| 57 | #- run: | |
| 58 | # make bootstrap |
| 59 | # make release |
| 60 | |
| 61 | - name: Perform CodeQL Analysis |
| 62 | uses: github/codeql-action/analyze@v1 |