Skip to content

Chore(deps): Bump requests from 2.32.3 to 2.32.4 in /.github/scripts/readme_svgs in the pip group across 1 directory #25

Chore(deps): Bump requests from 2.32.3 to 2.32.4 in /.github/scripts/readme_svgs in the pip group across 1 directory

Chore(deps): Bump requests from 2.32.3 to 2.32.4 in /.github/scripts/readme_svgs in the pip group across 1 directory #25

Workflow file for this run

name: 🕵 Check clang-format
on:
pull_request:
workflow_dispatch:
jobs:
format-check:
name: Check clang-format
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install clang-format
run: |
sudo apt-get update
sudo apt-get install -y clang-format
- name: Check clang-format
run: |
find src/atta/ -type f \( -name "*.h" -o -name "*.cpp" -o -name "*.inl" \) -exec clang-format --dry-run --Werror {} +