Skip to content

Commit 9a73e4f

Browse files
authored
Merge pull request #34 from Shopify/add-dev-yml
Add dev.yml so it's easier to setup locally
2 parents 15fcab3 + 077e167 commit 9a73e4f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

dev.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: packwerk
2+
3+
type: ruby
4+
5+
up:
6+
- ruby: 2.6.5
7+
- bundler
8+
9+
commands:
10+
test:
11+
run: |
12+
if [[ "$#" -eq 1 && -f "$1" ]];
13+
then
14+
rake test TEST="$1"
15+
else
16+
rake test "$@"
17+
fi
18+
style: "bundle exec rubocop -D --auto-correct"

0 commit comments

Comments
 (0)