From b164b72c5f290bb1fd844f4da04ce4e12ebbca3c Mon Sep 17 00:00:00 2001 From: Daniel Azuma Date: Thu, 28 Sep 2023 11:44:33 -0700 Subject: [PATCH] chore: Update CI matrix to include Ruby 3.2, and workaround minitest issue (#77) Signed-off-by: Daniel Azuma --- .github/workflows/ci.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index de42e7c..7fd23d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,17 +23,19 @@ jobs: ruby: "2.7" - os: ubuntu-latest ruby: "3.0" - tool: ci - os: ubuntu-latest ruby: "3.1" + - os: ubuntu-latest + ruby: "3.2" + tool: ci - os: ubuntu-latest ruby: jruby - os: ubuntu-latest ruby: truffleruby - os: macos-latest - ruby: "3.0" + ruby: "3.2" - os: windows-latest - ruby: "3.0" + ruby: "3.2" fail-fast: false runs-on: ${{ matrix.os }} steps: @@ -48,5 +50,7 @@ jobs: run: "bundle install && gem install --no-document toys" - name: Run ${{ matrix.tool || 'test' }} shell: bash + env: + MT_COMPAT: "true" run: | toys "${{ matrix.tool || 'test' }}" < /dev/null