Fast Link Checker for Markdown and HTML in Go
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
803 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
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