Add OpenSSF Scorecard supply-chain security workflow #204
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CodeQL" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
schedule: | |
- cron: '00 18 * * 1' | |
workflow_dispatch: | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: macos-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: brew install popt | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: cpp | |
queries: security-and-quality | |
source-root: src | |
- name: Build sources | |
run: | | |
cmake -S . -B build | |
cmake --build build | |
- name: Perform CodeQL analysis | |
uses: github/codeql-action/analyze@v3 |