1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-20 02:25:14 -07:00
libsodium/.github/workflows/codeql-analysis.yml

31 lines
610 B
YAML
Raw Normal View History

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