From 86bd8ec2009396db75c851fc814b6ec612a93670 Mon Sep 17 00:00:00 2001 From: Shinichi Maeshima Date: Mon, 13 Jun 2022 17:59:54 +0900 Subject: [PATCH] Add Ruby "3.0" support Now the CI doesn't test with Ruby 3.0, but 3.1. ref: https://bibwild.wordpress.com/2021/12/28/github-action-setup-ruby-needs-to-quote-3-0-or-will-end-up-with-ruby-3-1/ --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 67397ac..57dbc85 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - ruby-version: [2.3, 2.4, 2.5, 2.6, 2.7, 3.0] + ruby-version: ['2.3', '2.4', '2.5', '2.6', '2.7', '3.0', '3.1'] steps: - uses: actions/checkout@v2