Skip to content

Commit

Permalink
Merge pull request #23 from pact-foundation/ci/ruby_3_3
Browse files Browse the repository at this point in the history
fix: require ostruct for OpenStruct name errors
  • Loading branch information
YOU54F authored May 16, 2024
2 parents 462ba51 + a1d5d4c commit 8c74b13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby_version: ["2.7", "3.0", "3.1", "3.2"]
ruby_version: ["2.7", "3.0", "3.1", "3.2", "3.3"]
os: ["ubuntu-latest","windows-latest","macos-latest"]
steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions spec/features/create_message_pact_spec.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
require "pact/message/consumer/rspec"
require "fileutils"
require "pact/helpers"
require "ostruct"

RSpec.describe "creating a message pact" do

Expand Down
1 change: 1 addition & 0 deletions spec/features/create_message_pact_with_failure_test.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
require "pact/message/consumer/rspec"
require "fileutils"
require "ostruct"

RSpec.describe "creating a message pact with a failure" do

Expand Down

0 comments on commit 8c74b13

Please sign in to comment.