From 37538643be01720404dce700bde200fe48240c0d Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Wed, 31 Mar 2021 16:05:03 +0200 Subject: [PATCH] CI: Quote "3.0" in YAML To avoid 3.0 Float turning into the String "3". --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e4c80e7..8fe6b4a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: test: strategy: matrix: - ruby: [ 3.0, 2.7, 2.6, 2.5, 2.4, head ] + ruby: [ '3.0', 2.7, 2.6, 2.5, 2.4, head ] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: