Files
libunwind/.github/workflows/codeql-analysis.yml
Stephen Webb d2d34f81a5 Add more automation.
Added GitHub workflows for CodeQL static analysis and stale issue
grooming.
2023-10-12 09:07:48 -04:00

42 lines
905 B
YAML

name: "CodeQL"
on:
push:
branches: [ "master" ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ "master" ]
schedule:
# Runs automatically on the twelfth of every month at 16:26
- cron: '26 16 12 * *'
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 }}
queries: security-extended,security-and-quality
- name: Autobuild
uses: github/codeql-action/autobuild@v2
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2