Skip to content

Merge pull request #147 from pact-foundation/dependabot/github_action… #29

Merge pull request #147 from pact-foundation/dependabot/github_action…

Merge pull request #147 from pact-foundation/dependabot/github_action… #29

Workflow file for this run

name: Test
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
ruby_version: ["2.7","3.0","3.1","3.2"]
os: ["ubuntu-latest","windows-latest","macos-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
- run: "bundle install"
- run: "bundle exec rspec"