generated from mattbrictson/gem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ability to run codeclimate locally (#3)
* ability to run codeclimate locally * run codeclimate from container * dummy commit * dummy commit
- Loading branch information
1 parent
b1306cb
commit f66d6f2
Showing
3 changed files
with
16 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/bash | ||
|
||
docker run \ | ||
--interactive --tty --rm \ | ||
--env CODECLIMATE_CODE="$PWD" \ | ||
--volume "$PWD":/code \ | ||
--volume /var/run/docker.sock:/var/run/docker.sock \ | ||
--volume /tmp/cc:/tmp/cc \ | ||
codeclimate/codeclimate analyze |