Skip to content

feat: add support for passing extra parameter to handlers #13

feat: add support for passing extra parameter to handlers

feat: add support for passing extra parameter to handlers #13

Workflow file for this run

name: Lint C++ code
on:
push:
branches:
- master
pull_request:
workflow_dispatch:
permissions:
contents: none
jobs:
lint:
name: clang-format (${{ matrix.path }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
path:
- src
- test
permissions:
contents: read
steps:
- name: Harden Runner
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
with:
disable-sudo: true
egress-policy: block
allowed-endpoints: >
ghcr.io:443
github.com:443
pkg-containers.githubusercontent.com:443
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: clang-format Check
uses: jidicula/clang-format-action@c74383674bf5f7c69f60ce562019c1c94bc1421a # v4.13.0
with:
clang-format-version: 18
check-path: ${{ matrix.path }}