Skip to content

Take over PR

Take over PR #35

Workflow file for this run

name: Indent
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: DoozyX/clang-format-lint-action@v0.12
with:
source: '.'
exclude: ''
extensions: 'h,cc'
clangFormatVersion: 11
inplace: true
- run: |
git diff
git diff-files --quiet || exit $?