Skip to content

doc/manual: Fix chapter id collision: proxy/sharing #928

doc/manual: Fix chapter id collision: proxy/sharing

doc/manual: Fix chapter id collision: proxy/sharing #928

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
schedule:
- cron: "12 13 * * 4"
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
uses: actions/checkout@v4
with:
submodules: true
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
queries: +security-and-quality
- name: Install dependencies
run: sudo apt-get install -y meson
- name: Build
run: |
meson setup -Dstrict=true _build
meson compile -C _build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{ matrix.language }}"