mirror of
https://github.com/adulau/ssldump.git
synced 2024-11-07 12:06:27 +00:00
42 lines
977 B
YAML
42 lines
977 B
YAML
|
name: CodeQL analysis
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches: [ master ]
|
||
|
pull_request:
|
||
|
branches: [ master ]
|
||
|
schedule:
|
||
|
# build the main branch every Monday morning
|
||
|
- cron: '46 9 * * 1'
|
||
|
workflow_dispatch:
|
||
|
|
||
|
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 repository
|
||
|
uses: actions/checkout@v3
|
||
|
- name: Initialize CodeQL
|
||
|
uses: github/codeql-action/init@v2
|
||
|
with:
|
||
|
languages: ${{ matrix.language }}
|
||
|
- name: Build Application using script
|
||
|
run: |
|
||
|
./autogen.sh
|
||
|
sudo apt-get install autoconf libtls-dev libpcap-dev libnet1-dev libjson-c-dev
|
||
|
./configure
|
||
|
make
|
||
|
- name: Perform CodeQL Analysis
|
||
|
uses: github/codeql-action/analyze@v2
|
||
|
with:
|
||
|
category: "/language:${{matrix.language}}"
|