17 lines
287 B
YAML
17 lines
287 B
YAML
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
|
|
- shellcheck --format=gcc woolsey
|
|
- shellcheck --format=gcc remoteapp
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|