Skip to content

Commit b3ac79b

Browse files
add tests for ruby 3.3
1 parent a4bf6db commit b3ac79b

File tree

1 file changed

+19
-16
lines changed

1 file changed

+19
-16
lines changed

.github/workflows/pr-verify.yml

Lines changed: 19 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -29,19 +29,22 @@ jobs:
2929
- name: Run tests
3030
run: bundle exec rake test
3131

32-
# Test on latest Ruby
33-
# test_3_3:
34-
# runs-on: ubuntu-latest
35-
36-
# steps:
37-
# - name: Checkout code
38-
# uses: actions/checkout@v3
39-
40-
# - name: Set up Ruby
41-
# uses: ruby/setup-ruby@v1
42-
# with:
43-
# ruby-version: 3.3
44-
# bundler-cache: true
45-
46-
# - name: Run tests
47-
# run: rake test
32+
#Test on latest Ruby
33+
test_3_3:
34+
runs-on: ubuntu-latest
35+
36+
steps:
37+
- name: Checkout code
38+
uses: actions/checkout@v3
39+
40+
- name: Set up Ruby
41+
uses: ruby/setup-ruby@v1
42+
with:
43+
ruby-version: 3.3
44+
bundler-cache: true
45+
46+
- name: Install gems
47+
run: bundle install
48+
49+
- name: Run tests
50+
run: rake test

0 commit comments

Comments
 (0)