From 7fb49907534a2e1efddee3e936ac5ce13b12713b Mon Sep 17 00:00:00 2001 From: Peter Goldstein Date: Wed, 28 Dec 2022 22:23:41 -0500 Subject: [PATCH] Adds Ruby 3.2 to the CI matrix --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4114b15..183bf87 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: strategy: matrix: - ruby: [2.4, 2.7, '3.0', 3.1] + ruby: [2.4, 2.7, '3.0', 3.1, 3.2] rails: [4, 5, 6.0, 6.1, 7.0] exclude: - ruby: 2.4 @@ -40,6 +40,14 @@ jobs: rails: 5 - ruby: 3.1 rails: 6.0 + - ruby: 3.2 + rails: 4 + - ruby: 3.2 + rails: 5 + - ruby: 3.2 + rails: 6.0 + - ruby: 3.2 + rails: 6.1 steps: - uses: actions/checkout@v3