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

32 lines
580 B
YAML
Raw Normal View History

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