File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change 3131 bundler-cache : true
3232 - name : Run Unit Tests
3333 run : bundle exec rake test
34+
35+ style_check :
36+ name : " Style Check (Ruby ${{ matrix.ruby_version }})"
37+ runs-on : " ubuntu-latest"
38+ strategy :
39+ fail-fast : false
40+ matrix :
41+ ruby_version :
42+ - " 3.3"
43+ steps :
44+ - uses : actions/checkout@v4
45+ - name : " Set up Ruby ${{ matrix.ruby_version }}"
46+ uses : ruby/setup-ruby@v1
47+ with :
48+ ruby-version : ${{ matrix.ruby_version }}
49+ bundler-cache : true
50+ - name : Run RuboCop
51+ run : bash script/fmt
Original file line number Diff line number Diff line change @@ -4,9 +4,7 @@ inherit_gem:
44 rubocop-jekyll : .rubocop.yml
55
66AllCops :
7- TargetRubyVersion : 2.3
8- Exclude :
9- - vendor/**/*
7+ TargetRubyVersion : 2.7
108
119Lint/ShadowingOuterLocalVariable :
1210 Exclude :
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ Gem::Specification.new do |s|
1515 all_files = `git ls-files -z` . split ( "\x0 " )
1616 s . files = all_files . grep ( %r!^(lib)/! )
1717
18- s . required_ruby_version = ">= 2.3 .0"
18+ s . required_ruby_version = ">= 2.7 .0"
1919
2020 s . add_dependency "jekyll" , ">= 3.6" , "< 5.0"
2121
You can’t perform that action at this time.
0 commit comments