libsodium/.github/workflows/codeql-analysis.yml

31 lines
610 B
YAML
Raw Permalink Normal View History

2020-06-11 03:51:52 -04:00
name: "CodeQL scan"
on:
push:
pull_request:
schedule:
2021-11-10 09:59:50 -05:00
- cron: "0 17 * * 2"
2020-06-11 03:51:52 -04:00
jobs:
CodeQL-Build:
runs-on: ubuntu-latest
steps:
2021-11-10 09:59:50 -05:00
- name: Checkout repository
2022-11-23 13:44:10 -05:00
uses: actions/checkout@v3
2021-11-10 09:59:50 -05:00
with:
fetch-depth: 2
2020-06-11 03:51:52 -04:00
2021-11-10 09:59:50 -05:00
- name: Initialize CodeQL
2022-11-23 13:44:10 -05:00
uses: github/codeql-action/init@v2
2021-11-10 09:59:50 -05:00
with:
languages: cpp
2021-05-26 10:11:25 -04:00
2021-11-10 09:59:50 -05:00
- run: |
./autogen.sh -s
env CPPFLAGS="-DDEV_MODE=1" ./configure --disable-dependency-tracking
make -j $(nproc) check
2020-06-11 03:51:52 -04:00
2021-11-10 09:59:50 -05:00
- name: Perform CodeQL Analysis
2022-11-23 13:44:10 -05:00
uses: github/codeql-action/analyze@v2