2021-04-02 21:08:50 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# This hook lints the code, and if we're on develop or master, also forces the tests to pass.
|
2021-04-16 00:06:48 +02:00
|
|
|
./fejctl lint &> /dev/null 2>&1 || {
|
2021-04-16 00:32:03 +02:00
|
|
|
>&2 echo "Format check failed, use './fejctl lint' for more information.";
|
2021-04-04 15:13:36 +02:00
|
|
|
exit 1;
|
|
|
|
}
|
2021-04-02 21:08:50 +02:00
|
|
|
|
2021-04-12 21:33:56 +02:00
|
|
|
# branch=`git rev-parse --abbrev-ref HEAD`
|
2021-04-02 21:08:50 +02:00
|
|
|
|
2021-04-12 21:33:56 +02:00
|
|
|
# # TODO should we add release branches here as well?
|
|
|
|
# if [[ "$branch" =~ ^master|develop$ ]]; then
|
|
|
|
# make test > /dev/null 2>&1 || {
|
|
|
|
# >&2 echo "Tests failed. check 'make test' for more info.";
|
|
|
|
# exit 1;
|
|
|
|
# }
|
|
|
|
# fi
|