Skip to content

Commit b164b72

Browse files
authored
chore: Update CI matrix to include Ruby 3.2, and workaround minitest issue (#77)
Signed-off-by: Daniel Azuma <[email protected]>
1 parent 95590bf commit b164b72

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,19 @@ jobs:
2323
ruby: "2.7"
2424
- os: ubuntu-latest
2525
ruby: "3.0"
26-
tool: ci
2726
- os: ubuntu-latest
2827
ruby: "3.1"
28+
- os: ubuntu-latest
29+
ruby: "3.2"
30+
tool: ci
2931
- os: ubuntu-latest
3032
ruby: jruby
3133
- os: ubuntu-latest
3234
ruby: truffleruby
3335
- os: macos-latest
34-
ruby: "3.0"
36+
ruby: "3.2"
3537
- os: windows-latest
36-
ruby: "3.0"
38+
ruby: "3.2"
3739
fail-fast: false
3840
runs-on: ${{ matrix.os }}
3941
steps:
@@ -48,5 +50,7 @@ jobs:
4850
run: "bundle install && gem install --no-document toys"
4951
- name: Run ${{ matrix.tool || 'test' }}
5052
shell: bash
53+
env:
54+
MT_COMPAT: "true"
5155
run: |
5256
toys "${{ matrix.tool || 'test' }}" < /dev/null

0 commit comments

Comments
 (0)