Skip to content
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: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ["2.7", "3.0", "3.1"]
ruby: ["3.2", "3.3", "3.4"]
runs-on: "ubuntu-latest"
continue-on-error: false
steps:
Expand All @@ -32,6 +32,6 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: "3.1"
ruby-version: "3.2"
bundler-cache: true
- run: bundle exec rubocop
6 changes: 3 additions & 3 deletions spec/ruboty/handlers/github_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
%(ruboty create issue "#{title}" on #{user}/#{repository})
end

include_examples 'requires access token without access token'
it_behaves_like 'requires access token without access token'

context 'with access token' do
it 'creates a new issue with given title on given repository' do
Expand Down Expand Up @@ -115,7 +115,7 @@
%(ruboty search issues "#{query}")
end

include_examples 'requires access token without access token'
it_behaves_like 'requires access token without access token'

context 'with access token' do
it 'search an issue with given query' do
Expand Down Expand Up @@ -169,7 +169,7 @@
1
end

include_examples 'requires access token without access token'
it_behaves_like 'requires access token without access token'

context 'with closed issue' do
it 'replies so' do
Expand Down