Skip to content

Merge pull request #166 from vil02/renovate/markusjx-install-boost-2.x #366

Merge pull request #166 from vil02/renovate/markusjx-install-boost-2.x

Merge pull request #166 from vil02/renovate/markusjx-install-boost-2.x #366

Workflow file for this run

---
name: CodeQL
'on':
workflow_dispatch:
push:
branches:
- master
pull_request:
schedule:
- cron: '41 4 * * 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 repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Install boost
run: |
sudo apt-get update
sudo apt-get install libboost-all-dev
- name: Display boost version
run: |
dpkg -s libboost-dev | grep Version
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:${{matrix.language}}"
...