Skip to content

Merge branch 'main' of github.com:indy256/codelibrary into rstest #179

Merge branch 'main' of github.com:indy256/codelibrary into rstest

Merge branch 'main' of github.com:indy256/codelibrary into rstest #179

Workflow file for this run

name: clang-format
on: [push]
jobs:
check-clang-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: run clang-format
run: |
source_files=$(find . -type f -name "*.cpp" -o -name "*.h" -o -name "*.java")
diff -u <(cat $source_files) <(clang-format $source_files)