Skip to content

Commit 1f79783

Browse files
committed
Fix CI setting for Ruby 3.0
1 parent 6ba7901 commit 1f79783

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ jobs:
55
strategy:
66
fail-fast: false
77
matrix:
8-
ruby: [2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, head]
8+
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
9+
ruby: [2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, '3.0', 3.1, head]
910
runs-on: ubuntu-latest
1011
steps:
1112
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)