blob: 2fd90769a340591490e8b2433311b2d4b2392369 [file] [log] [blame]
#! /bin/bash
# Copyright (C) 2019-2022 The SymbiFlow Authors
#
# Use of this source code is governed by a ISC-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/ISC
#
# SPDX-License-Identifier: ISC
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
##########################################################################