Skip to content

Commit

Permalink
Add CodeQL workflow for GitHub code scanning
Browse files Browse the repository at this point in the history
  • Loading branch information
lgtm-migrator committed Dec 8, 2022
1 parent 8c4eb30 commit 814821c
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: "CodeQL"

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "12 14 * * 5"

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ cpp ]

steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: recursive

- name: Configure
run: cmake -DHERA_WABT=ON -DHERA_BINARYEN=ON -DHERA_WAVM=ON

- name: Initialize CodeQL
uses: github/codeql-action/init@v2
with:
languages: ${{ matrix.language }}
queries: +security-and-quality

- name: Autobuild
uses: github/codeql-action/autobuild@v2

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
with:
category: "/language:${{ matrix.language }}"

0 comments on commit 814821c

Please sign in to comment.