mirror of
https://github.com/taigrr/bitcask
synced 2025-01-18 04:03:17 -08:00
29 lines
424 B
YAML
29 lines
424 B
YAML
---
|
|
kind: pipeline
|
|
name: default
|
|
|
|
steps:
|
|
- name: build & run tests
|
|
image: r.mills.io/prologic/golang-alpine
|
|
commands:
|
|
- make build
|
|
- make test
|
|
|
|
- name: notify
|
|
image: plugins/webhook
|
|
settings:
|
|
urls:
|
|
- https://msgbus.mills.io/ci.mills.io
|
|
when:
|
|
status:
|
|
- success
|
|
- failure
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
event:
|
|
- tag
|
|
- push
|
|
- pull_request
|