Skip to content

Commit ab3b5be

Browse files
authored
Merge pull request #767 from ytkg/fix-ci-3-0-test
Fix CI setting for Ruby 3.0
2 parents 6ba7901 + 1f79783 commit ab3b5be

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)