Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump versions in CI workflow #273

Merged
merged 6 commits into from
Sep 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ jobs:
fail-fast: false
matrix:
ruby_version:
- 2.5
- 2.7
- 3.0
- "2.7"
- "3.0"
- "3.3"
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 5
- name: "Set up Ruby ${{ matrix.ruby_version }}"
Expand All @@ -41,20 +41,20 @@ jobs:

ghp:
if: "!contains(github.event.commits[0].message, '[ci skip]')"
name: Ruby 2.7 with GitHub Pages Gem
name: Ruby 3.3 with GitHub Pages Gem
runs-on: 'ubuntu-latest'
env:
GH_PAGES: true
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
with:
fetch-depth: 5
- name: "Set up Ruby 2.7"
- name: "Set up Ruby 3.3"
uses: ruby/setup-ruby@v1
with:
ruby-version: 2.7
ruby-version: 3.3
bundler-cache: true
- name: Execute tests
run: bash script/test
3 changes: 3 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ Performance/RedundantEqualityComparisonBlock:
Performance/RedundantSplitRegexpArgument:
Enabled: true

Style/ConcatArrayLiterals:
Exclude:
- 'jekyll-redirect-from.gemspec'
Style/InPatternThen:
Enabled: false
Style/MultilineInPatternThen:
Expand Down
4 changes: 2 additions & 2 deletions jekyll-redirect-from.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Gem::Specification.new do |spec|

spec.add_development_dependency "bundler"
spec.add_development_dependency "jekyll-sitemap", "~> 1.0"
spec.add_development_dependency "rake", "~> 12.0"
spec.add_development_dependency "rake", "~> 13.0"
spec.add_development_dependency "rspec", "~> 3.5"
spec.add_development_dependency "rubocop-jekyll", "~> 0.12.0"
spec.add_development_dependency "rubocop-jekyll", "~> 0.13.0"
end