Skip to content

chore(deps): update actions/checkout action to v6 #424

chore(deps): update actions/checkout action to v6

chore(deps): update actions/checkout action to v6 #424

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:
- examples
- include
- src
- test
permissions:
contents: read
steps:
- name: Check out code
uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- name: clang-format Check
uses: jidicula/clang-format-action@4726374d1aa3c6aecf132e5197e498979588ebc8 # v4.15.0
with:
clang-format-version: 20
check-path: ${{ matrix.path }}