mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
Fix 734 implement gofmt check in circleci
This commit is contained in:
parent
84e6215770
commit
e405c82b24
@ -20,9 +20,23 @@ jobs:
|
|||||||
command: go build -v
|
command: go build -v
|
||||||
- run:
|
- run:
|
||||||
command: make build_test
|
command: make build_test
|
||||||
|
fmt:
|
||||||
|
docker:
|
||||||
|
- image: circleci/golang:1.9
|
||||||
|
working_directory: /home/circleci/go/src/github.com/shirou/gopsutil
|
||||||
|
environment:
|
||||||
|
GOPATH: /home/circleci/go
|
||||||
|
steps:
|
||||||
|
- run:
|
||||||
|
command: |
|
||||||
|
echo -e 'export PATH=$GOPATH/bin:$PATH' >> $BASH_ENV
|
||||||
|
source /home/circleci/.bashrc
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
command: '[[ -z "$(find -not \( -path ./.git -prune \) -name "*.go" -exec gofmt -l {} + | tee /dev/stderr)" ]]'
|
||||||
workflows:
|
workflows:
|
||||||
version: 2
|
version: 2
|
||||||
test:
|
test:
|
||||||
jobs:
|
jobs:
|
||||||
- test
|
- test
|
||||||
|
- fmt
|
||||||
|
Loading…
x
Reference in New Issue
Block a user