Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 6 additions & 4 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ jobs:
timeout-minutes: 20
strategy:
matrix:
ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', 'jruby-9.2' ]
ruby: [ '2.4', '2.5', '2.6', '2.7', '3.0', '3.1', '3.2', '3.3', '3.4', 'jruby-9.4', 'jruby-10.0' ]
steps:
- name: Checkout ruby-http-client
uses: actions/checkout@v2
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand All @@ -33,7 +33,9 @@ jobs:
- run: make install

- name: Set up linter
run: bundle add rubocop --version "~> 1.24.1" --group "development" --skip-install
run: |
bundle add rubocop --version "~> 1.24.1" --group "development" --skip-install
bundle add base64 --group "development" --skip-install
if: ${{ matrix.ruby != '2.4' }}

- run: bundle install --with development
Expand All @@ -52,7 +54,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout ruby-http-client
uses: actions/checkout@v2
uses: actions/checkout@v5
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (C) 2023, Twilio SendGrid, Inc. <[email protected]>
Copyright (C) 2025, Twilio SendGrid, Inc. <[email protected]>

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down