mirror of
https://github.com/nextcloud/desktop.git
synced 2024-11-22 13:05:51 +03:00
75020c03ce
Bumps [cpp-linter/cpp-linter-action](https://github.com/cpp-linter/cpp-linter-action) from 2.10.2 to 2.11.0. - [Release notes](https://github.com/cpp-linter/cpp-linter-action/releases) - [Commits](https://github.com/cpp-linter/cpp-linter-action/compare/v2.10.2...v2.11.0) --- updated-dependencies: - dependency-name: cpp-linter/cpp-linter-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
20 lines
515 B
YAML
20 lines
515 B
YAML
name: Clang Format Checker
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize, reopened]
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: cpp-linter/cpp-linter-action@v2.11.0
|
|
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!"
|