Skip to content

Commit 044ecfd

Browse files
authored
Merge pull request #151 from brettchalupa/drop-eol-rubies
Drop EOL rubies 2.6, 2.7, 3.0
2 parents 3a0eb90 + e6beee4 commit 044ecfd

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/tests.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
name: Ruby
22

3-
on: [push,pull_request]
3+
on: [push, pull_request]
44

55
jobs:
66
test:
77
runs-on: ubuntu-latest
88

99
strategy:
1010
matrix:
11-
ruby-version: [3.2, 3.1, 3.0, 2.7]
11+
ruby-version: [3.3, 3.2, 3.1]
1212

1313
steps:
14-
- uses: actions/checkout@v2
15-
- name: Set up Ruby ${{ matrix.ruby-version }}
16-
uses: ruby/setup-ruby@v1
17-
with:
18-
ruby-version: ${{ matrix.ruby-version }}
19-
bundler-cache: true
20-
- name: Run the test suite
21-
run: bundle exec rake
14+
- uses: actions/checkout@v2
15+
- name: Set up Ruby ${{ matrix.ruby-version }}
16+
uses: ruby/setup-ruby@v1
17+
with:
18+
ruby-version: ${{ matrix.ruby-version }}
19+
bundler-cache: true
20+
- name: Run the test suite
21+
run: bundle exec rake

graphql-docs.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Gem::Specification.new do |spec|
3333
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
3434
spec.require_paths = ['lib']
3535

36-
spec.required_ruby_version = '>= 2.6.0'
36+
spec.required_ruby_version = '>= 3.1'
3737

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

0 commit comments

Comments
 (0)