mirror of https://github.com/nmasse-itix/liche.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
799 B
34 lines
799 B
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: golang
|
|
working_directory: /go/src/github.com/raviqqe/liche
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: Setup
|
|
command: |
|
|
apt -y update --fix-missing
|
|
apt -y install rake
|
|
apt -y install bundler rake
|
|
- run:
|
|
name: Dependencies
|
|
command: rake deps
|
|
- run:
|
|
name: Lint
|
|
command: rake lint
|
|
- run:
|
|
name: Unit Test
|
|
command: |
|
|
rake unit_test
|
|
curl -sSL https://codecov.io/bash | bash
|
|
- run:
|
|
name: Command Test
|
|
command: rake command_test
|
|
- run:
|
|
name: Build
|
|
command: rake build
|
|
- run:
|
|
name: Install
|
|
command: rake install
|
|
|