Browse Source

Moved coveralls report command to the travis ci file, instead of the makefile

dependabot/npm_and_yarn/web/prismjs-1.21.0
Max Schmitt 8 years ago
parent
commit
043e718b54
  1. 1
      .travis.yml
  2. 1
      Makefile
  3. 53
      schema.json

1
.travis.yml

@ -8,6 +8,7 @@ install:
- npm install
script:
- make
- goveralls -service=travis-ci
deploy:
provider: bintray
user: maxibanki

1
Makefile

@ -2,7 +2,6 @@ all: buildNodeFrontend getCMDDependencies embedFrontend getGoDependencies runUni
runUnitTests:
go test -v ./...
goveralls -service=travis-ci
buildNodeFrontend:
@cd static && yarn install

53
schema.json

@ -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"
}
}
}
}
}
Loading…
Cancel
Save