From 043e718b54d6596b6f40580d12f8dde6e9098bc4 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 8 Nov 2017 23:39:35 +0100 Subject: [PATCH] Moved coveralls report command to the travis ci file, instead of the makefile --- .travis.yml | 1 + Makefile | 1 - schema.json | 53 ----------------------------------------------------- 3 files changed, 1 insertion(+), 54 deletions(-) delete mode 100644 schema.json diff --git a/.travis.yml b/.travis.yml index 597a726..871a701 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,6 +8,7 @@ install: - npm install script: - make + - goveralls -service=travis-ci deploy: provider: bintray user: maxibanki diff --git a/Makefile b/Makefile index 9aa5cc4..1ace631 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,6 @@ all: buildNodeFrontend getCMDDependencies embedFrontend getGoDependencies runUni runUnitTests: go test -v ./... - goveralls -service=travis-ci buildNodeFrontend: @cd static && yarn install diff --git a/schema.json b/schema.json deleted file mode 100644 index 58f3966..0000000 --- a/schema.json +++ /dev/null @@ -1,53 +0,0 @@ -{ - "$schema": "http://json-schema.org/schema#", - "type": "object", - "properties": { - "$schema": { - "type": "string" - }, - "Handlers": { - "type": "object", - "properties": { - "BaseURL": { - "type": "string" - }, - "EnableGinDebugMode": { - "type": "boolean" - }, - "ListenAddr": { - "type": "string" - }, - "OAuth": { - "type": "object", - "properties": { - "Google": { - "type": "object", - "properties": { - "ClientID": { - "type": "string" - }, - "ClientSecret": { - "type": "string" - } - } - } - } - }, - "Secret": { - "type": "string" - } - } - }, - "Store": { - "type": "object", - "properties": { - "DBPath": { - "type": "string" - }, - "ShortedIDLength": { - "type": "integer" - } - } - } - } -} \ No newline at end of file