summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorPatrik Ragnarsson <patrik@starkast.net>2021-03-14 18:28:03 +0100
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2021-03-15 09:24:36 +1300
commit14a236b4f0899e46bc41c4f80dcff29159a59312 (patch)
tree45ccf74ad66172b2e1f4da6a3f957f9f49e0b153 /.github
parent138cba2f49d5c18e91b3dc377a83b9ce1fb70094 (diff)
downloadrack-14a236b4f0899e46bc41c4f80dcff29159a59312.tar.gz
CI: Workaround YAML gotcha in Actions
To avoid unexpectedly stop testing Ruby 3.0 when Ruby 3.1 is released. See https://github.com/actions/runner/issues/849 At https://github.com/rack/rack/runs/2041788658?check_suite_focus=true#step:3:3 we can see that the setup-ruby action ran with just `3` as the input and not `3.0`.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/development.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/development.yml b/.github/workflows/development.yml
index c13796d2..6a552fa2 100644
--- a/.github/workflows/development.yml
+++ b/.github/workflows/development.yml
@@ -8,7 +8,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
- ruby: [2.4, 2.5, 2.6, 2.7, 3.0, jruby, truffleruby-head]
+ ruby: [2.4, 2.5, 2.6, 2.7, '3.0', jruby, truffleruby-head]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v2