From 164c47120364be8f3b7b631dbc8f7c7e8a9d7dea Mon Sep 17 00:00:00 2001 From: akadusei Date: Wed, 14 Feb 2024 12:13:14 +0000 Subject: [PATCH] Quote version numbers in YAML This is to avoid them being coerced into numbers (eg: 1.10 -> 1.1). --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1524e2c..f6f98da 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: false matrix: - crystal: [1.3.2] + crystal: ['1.3.2'] runs-on: ubuntu-latest continue-on-error: false steps: @@ -34,7 +34,7 @@ jobs: strategy: fail-fast: false matrix: - crystal: [1.0.0, latest] + crystal: ['1.0.0', latest] experimental: [false] include: - crystal: nightly