Files
filebrozer/.circleci/config.yml
Henrique Dias 613a3f2811 refactor: moving repository
* refactor

* updates

* add circle

* update circle

* fix circle
2018-02-01 13:38:43 +00:00

20 lines
520 B
YAML

version: 2
jobs:
build:
docker:
- image: circleci/golang:1.9
working_directory: /go/src/github.com/filebrowser/filebrowser
steps:
- checkout
- run:
name: Install Dependencies
run: |
go get github.com/alecthomas/gometalinter
/go/bin/gometalinter --install
- run:
name: Run linting
command: gometalinter --disable-all -E gofmt -E misspell -E ineffassign -E goimports -E deadcode --exclude="rice-box.go" --tests ./...