Skip to content

Commit

Permalink
Merge pull request #29 from w-masahiro-ct/improve-test-ci
Browse files Browse the repository at this point in the history
Improve test CI
  • Loading branch information
mshibuya authored Jan 27, 2025
2 parents 799ff33 + 413dd16 commit b8470e5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: [ '2.5', '3.2' ]
runs-on: ubuntu-20.04
ruby: ['2.5', '3.4']
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rake spec
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run RSpec
run: bundle exec rake spec
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
source 'https://rubygems.org'

gem 'loofah', '~>2.19.1'
gem 'loofah', '~> 2.24.0'

gemspec

0 comments on commit b8470e5

Please sign in to comment.