Skip to content

Fuzz Testing

Fuzz Testing #121

Workflow file for this run

name: Formatting
on:
pull_request:
branches: [ "**" ]
jobs:
format-check:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install clang-format
run: |
sudo apt-get update
sudo apt-get install -y clang-format-20
sudo update-alternatives --install /usr/bin/clang-format clang-format /usr/bin/clang-format-20 100
- name: Check clang-format
run: |
find . -name '*.cpp' -o -name '*.hpp' -o -name '*.cc' | xargs clang-format --dry-run --Werror