Skip to content

Update acutest to the latest upstream commit #2320

Update acutest to the latest upstream commit

Update acutest to the latest upstream commit #2320

Workflow file for this run

name: CodeQL
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
schedule:
- cron: "46 1 * * 1"
workflow_dispatch:
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
container: ghcr.io/neomutt/ubuntu
permissions:
actions: read
contents: read
security-events: write
env:
CONFIGURE_OPTIONS: --bdb --gdbm --gnutls --gpgme --homespool --kyotocabinet --lmdb --lua --mixmaster --notmuch --qdbm --sasl --tokyocabinet --with-domain=example.com --with-lock=flock
steps:
- name: Get number of CPU cores
uses: SimenB/github-actions-cpu-cores@v2
id: cpu-cores
- name: Checkout Code
uses: actions/checkout@v4
- name: Configure Neomutt
run: ./configure --disable-doc $CONFIGURE_OPTIONS
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: cpp, python
config-file: ./.github/codeql.yml
queries: +security-and-quality
- name: Build Neomutt
run: make -j ${{steps.cpu-cores.outputs.count}} -s
- name: Perform C CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:cpp"
- name: Perform Python CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:python"