mirror of
https://github.com/d0zingcat/gocryptotrader.git
synced 2026-05-31 23:16:54 +00:00
50 lines
960 B
YAML
50 lines
960 B
YAML
matrix:
|
|
include:
|
|
- language: node_js
|
|
name: 'GoCryptoTrader [front-end]'
|
|
node_js:
|
|
- '10'
|
|
- '8'
|
|
- '6'
|
|
before_install:
|
|
- cd web/
|
|
install:
|
|
- npm install
|
|
script:
|
|
- npm run lint
|
|
- npm run build
|
|
|
|
- language: go
|
|
dist: xenial
|
|
name: 'GoCryptoTrader [back-end] [linux]'
|
|
go:
|
|
- 1.12.x
|
|
env:
|
|
- GO111MODULE=on
|
|
install: true
|
|
cache:
|
|
directories:
|
|
- $GOPATH/pkg/mod
|
|
|
|
script:
|
|
- make check
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
- language: go
|
|
os: osx
|
|
name: 'GoCryptoTrader [back-end] [darwin]'
|
|
go:
|
|
- 1.12.x
|
|
env:
|
|
- GO111MODULE=on
|
|
install: true
|
|
cache:
|
|
directories:
|
|
- $GOPATH/pkg/mod
|
|
|
|
script:
|
|
- make check
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|