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
Ben Schumacher 8fb70ec7f3
Bump dependencies and go version (#87)
* Bump go dependencies

* Bump go version to 1.14
2020-02-28 11:25:13 -05:00

27 lines
368 B
YAML

version: 2.1
executors:
default:
docker:
- image: circleci/golang:1.14-node
jobs:
lint:
executor:
name: default
steps:
- checkout
- run: make check-style
test:
executor:
name: default
steps:
- checkout
- run: make test
workflows:
version: 2
untagged-build:
jobs:
- lint
- test