TheAlgorithms-C/.github/workflows/clang-format.yml
Workflow config file is invalid. Please check your config file: yaml: line 10: did not find expected key
2020-05-29 16:06:01 -04:00

29 lines
750 B
YAML

name: Code Formatting
on: [push]
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
- name: requirements
run: |
sudo apt -qq -y update
sudo apt -qq install clang-format
steps:
- uses: actions/checkout@master
with:
submodules: true
- name: Formatter
run: find -name '*.c' -o -name '*.h' | \
xargs clang-format -i -style="{ BasedOnStyle: LLVM, UseTab: Never, \
IndentWidth: 4, TabWidth: 4, BreakBeforeBraces: Allman, \
AllowShortIfStatementsOnASingleLine: false, IndentCaseLabels: false, \
ColumnLimit: 80, AccessModifierOffset: -4 }"
- name: test
run: git diff