Skip to content

Commit

Permalink
Merge pull request #151 from brettchalupa/drop-eol-rubies
Browse files Browse the repository at this point in the history
Drop EOL rubies 2.6, 2.7, 3.0
  • Loading branch information
brettchalupa authored Jul 3, 2024
2 parents 3a0eb90 + e6beee4 commit 044ecfd
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
name: Ruby

on: [push,pull_request]
on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
ruby-version: [3.2, 3.1, 3.0, 2.7]
ruby-version: [3.3, 3.2, 3.1]

steps:
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run the test suite
run: bundle exec rake
- uses: actions/checkout@v2
- name: Set up Ruby ${{ matrix.ruby-version }}
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Run the test suite
run: bundle exec rake
2 changes: 1 addition & 1 deletion graphql-docs.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ['lib']

spec.required_ruby_version = '>= 2.6.0'
spec.required_ruby_version = '>= 3.1'

spec.add_dependency 'graphql', '~> 2.0'

Expand Down

0 comments on commit 044ecfd

Please sign in to comment.