Skip to content

Removed unused plugin code (#56) #159

Removed unused plugin code (#56)

Removed unused plugin code (#56) #159

Workflow file for this run

name: Linting with Clang-format
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
code-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run clang-format
run: |
find ./src/lib/cloudfuse/ -iname '*.h' -o -iname '*.cpp' | xargs clang-format -i --dry-run --Werror
find ./src/plugin/ -iname '*.h' -o -iname '*.cpp' | xargs clang-format -i --dry-run --Werror
find ./src/unit_tests/ -iname '*.h' -o -iname '*.cpp' | xargs clang-format -i --dry-run --Werror
find ./unit_tests/ -iname '*.h' -o -iname '*.cpp' | xargs clang-format -i --dry-run --Werror