blob: 20814bf02ce4828b63efe69322a7680d456c45d9 [file] [log] [blame]
#! /bin/bash
set -e
source .github/workflows/common.sh
##########################################################################
start_section Formatting
make format -j`nproc`
test $(git status --porcelain | wc -l) -eq 0 || { git diff; false; }
end_section
##########################################################################