We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63ebb08 commit 9bbc401Copy full SHA for 9bbc401
.circleci/config.yml
@@ -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
13
+ name: Test
14
+ command: make test
Makefile
@@ -1,7 +1,7 @@
.PHONY: image test sh
image:
- docker image build -t codeclimate/simplecov-json-formatter .
+ docker image build -t simplecov-json-formatter .
test:
./bin/run-image rake
bin/run-image
@@ -3,4 +3,4 @@
exec docker run \
-it --rm \
--volume "$PWD:/gem" \
- codeclimate/simplecov-json-formatter "$@"
+ simplecov-json-formatter "$@"
0 commit comments