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:
11
11
working-directory : ./2024/ruby
12
12
13
13
jobs :
14
- tests :
14
+ lint :
15
15
runs-on : ubuntu-latest
16
16
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"
23
18
- name : RuboCop Linter Action
24
19
uses : andrewmcodes/rubocop-linter-action@v3.3.0
20
+ tests :
21
+ runs-on : ubuntu-latest
22
+ steps :
23
+ - uses : " ./.github/shared/setup"
25
24
- name : Run tests
26
25
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