Skip to content

Commit 980eb33

Browse files
committed
run DRAFT API CI with Ruby 3.3 and 3.4
1 parent fe6f850 commit 980eb33

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/draft_api.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,17 @@ jobs:
66
build:
77
runs-on: ubuntu-22.04
88
timeout-minutes: 15
9+
strategy:
10+
matrix:
11+
ruby:
12+
- '3.3'
13+
- '3.4'
914
steps:
1015
- uses: actions/checkout@v4
11-
- name: Set up Ruby
16+
- name: Set up Ruby ${{ matrix.ruby }}
1217
uses: ruby/setup-ruby@v1
1318
with:
14-
ruby-version: '3.4'
19+
ruby-version: ${{ matrix.ruby }}
1520
- name: Install ZMQ and CZMQ
1621
run: |
1722
export PKG_CONFIG_PATH=$HOME/lib/pkgconfig # custom libs (for linking)

0 commit comments

Comments
 (0)