Skip to content

Commit

Permalink
Only test for Ruby >= 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
rzhade3 committed Jan 10, 2024
1 parent 49649e5 commit aaff290
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ '2.4.0', '2.5.0', '2.6.0', '2.7.2', '3.0.0', '3.3.0']
ruby: [ '2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby }}
Expand All @@ -16,10 +16,7 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Build and test with Rake with Ruby ${{ matrix.ruby }}
run: |
gem install bundler
bundle install --jobs 4 --retry 3
bundle exec rake spec
run: bundle exec rake spec
lint:
name: Rubocop
runs-on: ubuntu-latest
Expand Down

0 comments on commit aaff290

Please sign in to comment.