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.
32 lines
736 B
32 lines
736 B
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: golang
|
|
working_directory: /go/src/github.com/raviqqe/linkcheck
|
|
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
|
|
- run:
|
|
name: Command Test
|
|
command: rake command_test
|
|
- run:
|
|
name: Build
|
|
command: rake build
|
|
- run:
|
|
name: Install
|
|
command: rake install
|
|
|