Skip to content

Commit 2c42376

Browse files
committed
Add a windows job to CI
1 parent 02182c3 commit 2c42376

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,24 @@ concurrency:
66

77
jobs:
88
build:
9-
runs-on: ubuntu-latest
9+
runs-on: ${{ matrix.os }}-latest
1010
timeout-minutes: 10
1111

1212
strategy:
1313
fail-fast: false
1414
matrix:
1515
ruby: [2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, 3.2, 3.3, jruby, truffleruby]
16+
os: [ubuntu]
17+
include:
18+
- ruby: 3.3
19+
os: windows
1620

1721
env:
1822
JAVA_OPTS: '-Xmx1024m'
1923
RUBYOPT: '-w'
2024
JRUBY_OPTS: '--dev'
2125

22-
name: "Tests: Ruby ${{ matrix.ruby }}"
26+
name: "Tests: Ruby ${{ matrix.ruby }} - ${{ matrix.os }}"
2327
steps:
2428
- name: Clone Repo
2529
uses: actions/checkout@v4

0 commit comments

Comments
 (0)