mirror of
https://github.com/filebrowser/filebrowser.git
synced 2025-05-10 12:12:57 +00:00

* refactor * updates * add circle * update circle * fix circle Former-commit-id: bdc8ecd8766e35f9ab7a9e8bd9dd62206bffb37b [formerly 0d28166061f5c8e573e916797abef67e33a83cf2] [formerly efd85c08040565ba75e06b3d7d7b16366d36325a [formerly 613a3f2811ae33fd2c7e1160cd8ed0130aaebf51]] Former-commit-id: eca6ad66d686a6737d81dca5e00f1d46a75a217a [formerly a987246f7c0940e8812cb4d0c1b0514b708e8c44] Former-commit-id: fd882cf0d2216dcfb035a703011eeb1a2f79da9f
20 lines
520 B
YAML
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 ./...
|