summaryrefslogtreecommitdiff
path: root/.github/workflows/codeql.yml
blob: cd370957f795f304f0dc057577091d03ff1313b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: "CodeQL"

on:
  push:
    branches: [ master, maint/* ]
  pull_request:
    branches: [ master, maint/* ]
  schedule:
    - cron: '21 3 * * 1'

env:
  docker-registry: docker.pkg.github.com

jobs:
  analyze:
    name: Analyze
    runs-on: ubuntu-latest

    steps:
    - name: Check out repository
      uses: actions/checkout@v2
      with:
        fetch-depth: 0

    # Initializes the CodeQL tools for scanning.
    - name: Initialize CodeQL
      uses: github/codeql-action/init@v1
      with:
        languages: 'cpp'

    - name: Build
      run: |
        mkdir build
        cd build
        cmake .. -DREGEX_BACKEND=pcre -DDEPRECATE_HARD=ON -DUSE_BUNDLED_ZLIB=ON
        cmake --build .        

    - name: Perform CodeQL Analysis
      uses: github/codeql-action/analyze@v1