From 48ec074478b49000ad2c4f93286ef195af0e9c9f Mon Sep 17 00:00:00 2001 From: Yasuo Honda Date: Fri, 14 Feb 2025 09:50:17 +0900 Subject: [PATCH] `matrix.ruby-version` should be an array --- .github/workflows/test.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4f7ed8f..a80cff2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,15 +13,17 @@ jobs: fail-fast: false matrix: ruby-version: - - '2.5', - - '2.6', - - '2.7', - - '3.0', - - '3.1', - - '3.2', - - '3.3', - - '3.4', - - 'head' + [ + '2.5', + '2.6', + '2.7', + '3.0', + '3.1', + '3.2', + '3.3', + '3.4', + 'head' + ] steps: - uses: actions/checkout@v3