mirror of
https://github.com/nextcloud/desktop.git
synced 2025-10-26 11:17:43 +00:00
Bumps [cpp-linter/cpp-linter-action](https://github.com/cpp-linter/cpp-linter-action) from 2.16.4 to 2.16.5.
- [Release notes](https://github.com/cpp-linter/cpp-linter-action/releases)
- [Commits](7dacd91f6a...b7fbdde0f6)
---
updated-dependencies:
- dependency-name: cpp-linter/cpp-linter-action
dependency-version: 2.16.5
dependency-type: direct:production
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
23 lines
722 B
YAML
23 lines
722 B
YAML
# SPDX-FileCopyrightText: 2022 Nextcloud GmbH and Nextcloud contributors
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
name: Clang Format Checker
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
- uses: cpp-linter/cpp-linter-action@b7fbdde0f6776f478f4d8867c2b746077fa7ea89 # v2.16.5
|
|
id: linter
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
style: file
|
|
lines-changed-only: true
|
|
version: 14
|
|
- name: Fail fast?!
|
|
if: steps.linter.outputs.checks-failed > 0
|
|
run: echo "Some files failed the linting checks!"
|