22 lines
380 B
YAML
22 lines
380 B
YAML
pipeline:
|
|
run_golang:
|
|
group: build
|
|
image: golang
|
|
commands:
|
|
- go build
|
|
- go test
|
|
|
|
run_bash:
|
|
group: build
|
|
image: alpine
|
|
commands:
|
|
- echo "running env command"
|
|
- env
|
|
|
|
slack:
|
|
image: plugins/slack
|
|
channel: system_events
|
|
webhook:
|
|
from_secret: slack_webhook
|
|
when:
|
|
status: [ success, failure ]
|