From e13e525af702abec08ae9f4e7107db0d583042b3 Mon Sep 17 00:00:00 2001 From: Phil Phillips Date: Fri, 25 Feb 2022 11:19:19 -0600 Subject: [PATCH] build: add jruby and truffleruby to build matrix --- .github/workflows/ruby-tests.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ruby-tests.yml b/.github/workflows/ruby-tests.yml index f15225a..57ddfac 100644 --- a/.github/workflows/ruby-tests.yml +++ b/.github/workflows/ruby-tests.yml @@ -15,7 +15,13 @@ jobs: strategy: matrix: - ruby-version: [3.1, 3.0, 2.7, 2.6] + ruby-version: + - "3.1" + - "3.0" + - "2.7" + - "2.6" + - jruby + - truffleruby steps: - uses: actions/checkout@v2