Skip to content

docs: function_trait_impl 的注释写错了 (: #25

docs: function_trait_impl 的注释写错了 (:

docs: function_trait_impl 的注释写错了 (: #25

Workflow file for this run

name: "CodeQL"
on:
push:
branches: [master]
paths:
- "src/**.c"
- "inc/**.h"
- "inc/**.hpp"
- ".github/workflows/codeql.yml"
pull_request:
branches: [master]
paths:
- "src/**.c"
- "inc/**.h"
- "inc/**.hpp"
- ".github/workflows/codeql.yml"
workflow_dispatch:
inputs:
logLevel:
description: "Log level"
required: true
default: "warning"
concurrency:
group: CodeQL-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
analyze:
permissions:
actions: read
contents: read
security-events: write
name: analyze
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: cpp
- name: Build
run: |
make dylib
env:
MTFMT_BUILD_C_DEFS: >-
-D_MSTR_BUILD_DYLIB=1
MTFMT_BUILD_USE_LTO: "1"
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3