File tree Expand file tree Collapse file tree 2 files changed +17
-7
lines changed
Expand file tree Collapse file tree 2 files changed +17
-7
lines changed Original file line number Diff line number Diff line change @@ -11,16 +11,15 @@ defaults:
1111 working-directory : ./2024/ruby
1212
1313jobs :
14- tests :
14+ lint :
1515 runs-on : ubuntu-latest
1616 steps :
17- - uses : actions/checkout@v3
18- - name : Set up Ruby
19- uses : ruby/setup-ruby@v1
20- with :
21- bundler-cache : true
22- working-directory : ./2024/ruby
17+ - uses : " ./.github/shared/setup"
2318 - name : RuboCop Linter Action
2419 uses :
andrewmcodes/[email protected] 20+ tests :
21+ runs-on : ubuntu-latest
22+ steps :
23+ - uses : " ./.github/shared/setup"
2524 - name : Run tests
2625 run : bundle exec rspec
Original file line number Diff line number Diff line change 1+ name : " setup ruby"
2+
3+ runs :
4+ using : " composite"
5+ steps :
6+ - uses : actions/checkout@v3
7+ - name : Set up Ruby
8+ uses : ruby/setup-ruby@v1
9+ with :
10+ bundler-cache : true
11+ working-directory : ./2024/ruby
You can’t perform that action at this time.
0 commit comments