5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-02-04 20:46:16 +00:00

21 lines
306 B
YAML
Raw Normal View History

kind: pipeline
type: docker
name: test
steps:
- name: golangci-lint
image: golangci/golangci-lint:latest-alpine
commands:
- golangci-lint run
- name: build-test
image: golang:1.13
commands:
- go build
trigger:
branch:
- master
event:
- pull_request
- push