Skip to content

BRAYNS-630 Remove spdlog and use fmt. #3

BRAYNS-630 Remove spdlog and use fmt.

BRAYNS-630 Remove spdlog and use fmt. #3

Workflow file for this run

name: Linter
on:
pull_request:
branches:
- develop
jobs:
clang-format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Run clang-format
run: |
apt update && apt install -y clang-format-15
SOURCES=$(find apps src tests \( -name "*.h" -or -name "*.cpp" \))
clang-format-15 --dry-run --Werror $SOURCES