Skip to content

Commit 8891348

Browse files
committed
Update tests with current list of supported rubies
1 parent 89f7abb commit 8891348

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ name: Test
22
on: [ push, pull_request, workflow_dispatch ]
33

44
jobs:
5-
rspec:
5+
test:
66
runs-on: ubuntu-latest
77

88
strategy:
99
fail-fast: false
1010
matrix:
11-
ruby: [ 2.6, 2.7, 3.0, 3.1, head ]
11+
ruby: [ 2.7, 3.0, 3.1, 3.2, 3.3, 3.4, head ]
1212

1313
steps:
1414
- uses: actions/checkout@v3

Gemfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
source 'https://rubygems.org'
22

3+
gem "mutex_m" # Ruby 3.4 no longer includes this
4+
gem "base64"
5+
gem "ostruct" # Ruby 3.5 no longer includes this
6+
37
# Specify your gem's dependencies in graphiti_spec_helpers.gemspec
4-
gemspec
8+
gemspec

0 commit comments

Comments
 (0)