Skip to content

Commit 9bbc401

Browse files
author
Federico Moya
committed
Setup circleci
1 parent 63ebb08 commit 9bbc401

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

.circleci/config.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
version: 2.0
2+
3+
jobs:
4+
build:
5+
machine: true
6+
working_directory: ~/simplecov-json-formatter
7+
steps:
8+
- checkout
9+
- run:
10+
name: Build
11+
command: make image
12+
- run:
13+
name: Test
14+
command: make test

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.PHONY: image test sh
22

33
image:
4-
docker image build -t codeclimate/simplecov-json-formatter .
4+
docker image build -t simplecov-json-formatter .
55

66
test:
77
./bin/run-image rake

bin/run-image

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
exec docker run \
44
-it --rm \
55
--volume "$PWD:/gem" \
6-
codeclimate/simplecov-json-formatter "$@"
6+
simplecov-json-formatter "$@"

0 commit comments

Comments
 (0)