Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support Ruby 2.7 #1243

Merged
merged 1 commit into from
Apr 15, 2020
Merged
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
4 changes: 3 additions & 1 deletion .github/workflows/octokit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ jobs:
run: chmod 600 spec/fixtures/.netrc
- name: Install dependencies
run: |
bundle install --path=.bundle/gems --without=development --jobs 4 --retry 3
bundle config set path .bundle/gems
bundle config set without development
bundle install --jobs 4 --retry 3
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

- name: Test with RSpec
env:
GITHUB_CI: 1
Expand Down
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -713,16 +713,12 @@ when writing new specs.

## Supported Ruby Versions

This library aims to support and is [tested against][travis] the following Ruby
This library aims to support and is [tested against][actions] the following Ruby
implementations:

* Ruby 2.0
* Ruby 2.1
* Ruby 2.2
* Ruby 2.3
* Ruby 2.4
* Ruby 2.5
* Ruby 2.6
* Ruby 2.7

If something doesn't work on one of these Ruby versions, it's a bug.

Expand All @@ -737,7 +733,7 @@ implementation, you will be responsible for providing patches in a timely
fashion. If critical issues for a particular implementation exist at the time
of a major release, support for that Ruby version may be dropped.

[travis]: https://travis-ci.org/octokit/octokit.rb
[actions]: https://github.com/octokit/octokit.rb/actions

## Versioning

Expand Down