Skip to content

ci: minor polish, add codespell action, add clang permutation #6

ci: minor polish, add codespell action, add clang permutation

ci: minor polish, add codespell action, add clang permutation #6

Workflow file for this run

# SPDX-FileCopyrightText: 2024 Emil Velikov <[email protected]>
#
# SPDX-License-Identifier: LGPL-2.1-or-later
name: Check code style with clang-format
on:
pull_request:
branches: [master]
permissions:
contents: read
jobs:
stylecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
- run: git fetch --depth=1 origin ${{ github.event.pull_request.base.sha }}
- uses: yshui/git-clang-format-lint@a65b466f5903524aef27552f63c3906c0f73f184 # v1.16
with:
base: ${{ github.event.pull_request.base.sha }}