This repository has been archived on 2024-11-03. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
mattermost-plugin-attachmen.../.circleci/config.yml
Carlos Tadeu Panato Junior cf8dcecdf2 introducing circleci (#31)
Based on the dev meeting we are moving to circleci
2019-03-06 19:03:52 +01:00

30 lines
662 B
YAML

version: 2.1
jobs:
lint:
docker:
- image: circleci/golang:1.12-node
working_directory: /go/src/github.com/mattermost/mattermost-plugin-sample
steps:
- checkout
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: make check-style
test:
docker:
- image: circleci/golang:1.12-node
working_directory: /go/src/github.com/mattermost/mattermost-plugin-sample
steps:
- checkout
- run: curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
- run: make test
workflows:
version: 2
untagged-build:
jobs:
- lint
- test