Files
rdp-scripts/.drone.yml
Torma Kristóf 70b1bd5df4
All checks were successful
continuous-integration/drone Build is passing
Update '.drone.yml'
2022-06-13 21:42:11 +02:00

17 lines
443 B
YAML

kind: pipeline
type: docker
name: default
steps:
- name: shellcheck
image: ubuntu:22.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