rdp-scripts/.drone.yml
Torma Kristóf b1ecda1728
Some checks failed
continuous-integration/drone/push Build is failing
drone config
2020-02-27 20:56:38 +01:00

17 lines
360 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: shellcheck
image: ubuntu:18.04
commands:
- apt update && apt upgrade -y && apt install -y shellcheck
- for file in $(find . -type f -name \"*.sh\"); do shellcheck --format=gcc $file; done;
- shellcheck --format=gcc woolsey
- shellcheck --format=gcc remoteapp
trigger:
branch:
- master