blob: 69cf9a6045aa6cb9448653dc29c61af4fb54e14b [file] [log] [blame]
#! /bin/bash
# Copyright (C) 2020-2021 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
##########################################################################