diff options
author | LGTM Migrator <lgtm-migrator@users.noreply.github.com> | 2022-12-08 17:04:59 +0000 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2022-12-08 12:57:01 -0500 |
commit | c4d2f79e74a684f40f0c3d2b670133494395c9ee (patch) | |
tree | 37b3ec1060be4e908a9a4e14bace2496a659ea33 /.github/workflows/codeql.yml | |
parent | 87d0f8988c9452428d5a250644ac4cb2acaf43bb (diff) | |
download | bfs-c4d2f79e74a684f40f0c3d2b670133494395c9ee.tar.xz |
Add CodeQL workflow for GitHub code scanning
Diffstat (limited to '.github/workflows/codeql.yml')
-rw-r--r-- | .github/workflows/codeql.yml | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..e1a99f2 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,55 @@ +name: CodeQL + +on: + push: + branches: + - main + pull_request: + branches: + - main + schedule: + - cron: "10 14 * * 2" + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + permissions: + actions: read + contents: read + security-events: write + + strategy: + fail-fast: false + + steps: + - name: Checkout + uses: actions/checkout@v3 + + - name: Install dependencies + run: | + sudo apt-get update -y + sudo apt-get install -y \ + gcc \ + acl \ + libacl1-dev \ + attr \ + libattr1-dev \ + libcap2-bin \ + libcap-dev \ + libonig-dev + + - name: Initialize CodeQL + uses: github/codeql-action/init@v2 + with: + languages: cpp + queries: +security-and-quality + + - name: Generate coverage + run: | + make -j$(nproc) all + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v2 + with: + category: "/language:cpp" |