diff --git a/.github/workflows/release_gem.yml b/.github/workflows/release_gem.yml index e5bb8b5..97f2135 100644 --- a/.github/workflows/release_gem.yml +++ b/.github/workflows/release_gem.yml @@ -10,12 +10,12 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: - ruby-version: '2.6' + ruby-version: '3.2' - run: | - gem install bundler -v 2.1 + gem install bundler -v 2.4 bundle install - name: Test run: bundle exec rake @@ -28,7 +28,7 @@ jobs: version: ${{ steps.release.outputs.version }} increment: ${{ steps.release.outputs.increment }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - uses: pact-foundation/release-gem@v0.0.13 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4c2204e..aaaf0e8 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,15 +4,14 @@ on: [push, pull_request] jobs: test: - runs-on: "ubuntu-latest" - continue-on-error: ${{ matrix.experimental }} + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - ruby_version: ["2.7", "3.0", "3.1", "3.2"] - experimental: [false] + ruby_version: ["2.7", "3.0", "3.2"] + os: ["ubuntu-latest","windows-latest","macos-latest"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: ${{ matrix.ruby_version }} @@ -26,7 +25,7 @@ jobs: matrix: feature: [""] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - uses: ruby/setup-ruby@v1 with: ruby-version: "3.2" diff --git a/.ruby-version b/.ruby-version index e6b7b62..4fe5631 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.7 \ No newline at end of file +3.2 \ No newline at end of file