From 8d186bee073caca5afe7df54b8fc0b422f290d4b Mon Sep 17 00:00:00 2001 From: Olle Jonsson Date: Thu, 1 Apr 2021 16:03:43 +0200 Subject: [PATCH] CI: Quote "3.0" in YAML This avoids 3.0 -> "3" YAML conversion. --- .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 5c8e526..6fb0a11 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,7 @@ jobs: name: build (${{ matrix.ruby }} / ${{ matrix.os }}) strategy: matrix: - ruby: [ 3.0, 2.7, 2.6, 2.5, head ] + ruby: [ '3.0', 2.7, 2.6, 2.5, head ] os: [ ubuntu-latest, macos-latest ] runs-on: ${{ matrix.os }} steps: