Skip to content

Commit

Permalink
Update CI test matrix (#348)
Browse files Browse the repository at this point in the history
* Update CI test matrix

* Fix failing test provisionally
  • Loading branch information
wynksaiddestroy authored Jul 18, 2024
1 parent 3e56445 commit 89e7ed3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['2.7', '3.0', '3.1', '3.2']
ruby-version: ['3.1', '3.2', '3.3', head]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion spec/features/examples/intercept_request_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
end

it 'should intercept a GET request directly' do
stub = proxy.stub('http://example.com/').and_return(
stub = proxy.stub('https://example.com:443/').and_return(
headers: { 'Access-Control-Allow-Origin' => '*' },
code: 200
)
Expand Down

0 comments on commit 89e7ed3

Please sign in to comment.