summaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yml')
-rw-r--r--.github/workflows/ci.yml30
1 files changed, 24 insertions, 6 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7fe8d48..0553039 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -4,23 +4,41 @@ on: [push, pull_request]
jobs:
test:
- runs-on: ubuntu-latest
-
strategy:
fail-fast: false
matrix:
+ os: [ubuntu-latest]
ruby-version:
+ - head
- '3.2'
- '3.1'
- '3.0'
- '2.7'
- '2.6'
- '2.5'
+ - '2.4'
- '2.3'
- - '2.2'
- - '2.1'
- - jruby-9.3
- - jruby-9.2
+ - jruby
+ - jruby-head
+ - truffleruby
+ - truffleruby-head
+ - truffleruby+graalvm
+ include:
+ - os: windows-latest
+ ruby-version: head
+ - os: windows-latest
+ ruby-version: '3.1'
+ - os: windows-latest
+ ruby-version: mingw
+ - os: windows-latest
+ ruby-version: mswin
+ - os: windows-latest
+ ruby-version: ucrt
+ - os: macos-latest
+ ruby-version: 'head'
+ - os: macos-latest
+ ruby-version: '3.1'
+ runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Ruby ${{ matrix.ruby-version }}