diff options
| author | van Hauser <vh@thc.org> | 2020-12-23 14:58:52 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-23 14:58:52 +0100 |
| commit | 7dc433a0c0efb236a2ab6fa4006a91aa02e26779 (patch) | |
| tree | b0a48cd22af9aaa9695b61d08499232dbe9f0f36 /.github/workflows/codeql-analysis.yml | |
| parent | 1078409875cacc5626a3961e08cf67c68049d22a (diff) | |
| parent | 8d10d12ab344bdf6dfe0478e927c92278b4aac78 (diff) | |
| download | afl++-7dc433a0c0efb236a2ab6fa4006a91aa02e26779.tar.gz | |
Merge pull request #637 from AFLplusplus/dev
minor push to stable
Diffstat (limited to '.github/workflows/codeql-analysis.yml')
| -rw-r--r-- | .github/workflows/codeql-analysis.yml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml new file mode 100644 index 00000000..eda8dfd0 --- /dev/null +++ b/.github/workflows/codeql-analysis.yml @@ -0,0 +1,32 @@ +name: "CodeQL" + +on: + push: + branches: [ stable, dev ] + pull_request: + branches: [ stable, dev ] + +jobs: + analyze: + name: Analyze + runs-on: ubuntu-latest + + strategy: + fail-fast: false + matrix: + language: [ 'cpp' ] + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Initialize CodeQL + uses: github/codeql-action/init@v1 + with: + languages: ${{ matrix.language }} + + - name: Autobuild + uses: github/codeql-action/autobuild@v1 + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v1 |
