7 lines
143 B
Bash
7 lines
143 B
Bash
|
#!/bin/bash
|
||
|
set -xeuo pipefail
|
||
|
# Add cheap (non-building) checks here
|
||
|
dn=$(dirname $0)
|
||
|
${dn}/codestyle.sh
|
||
|
${dn}/ci-commitmessage-submodules.sh
|