kind: pipeline type: docker name: default steps: - name: shellcheck image: ubuntu:18.04 commands: - apt update && apt install -y shellcheck - shellcheck --format=gcc rdp.sh '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi - shellcheck --format=gcc woolsey '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi - shellcheck --format=gcc remoteapp '{}' + || if [ $? -eq 1 ]; then echo "you fail"; fi trigger: branch: - master