rdp-scripts/.drone.yml

17 lines
443 B
YAML
Raw Normal View History

2020-02-27 20:56:38 +01:00
kind: pipeline
type: docker
name: default
steps:
- name: shellcheck
image: ubuntu:18.04
commands:
2020-02-27 21:06:33 +01:00
- apt update && apt install -y shellcheck
2020-02-27 21:10:55 +01:00
- 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
2020-02-27 20:56:38 +01:00
trigger:
branch:
- master