Skip to content

Commit 47aa865

Browse files
committed
More versions
1 parent 251532e commit 47aa865

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,15 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
ruby: [2.5, 2.6, 2.7, '3.0', head, truffleruby, truffleruby-head]
10+
ruby:
11+
- '2.7'
12+
- '3.0'
13+
- '3.1'
14+
- '3.2'
15+
- '3.3'
16+
- head
17+
- truffleruby
18+
- truffleruby-head
1119
runs-on: ubuntu-latest
1220
steps:
1321
- uses: actions/checkout@v4

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,8 +91,23 @@ comment.text_html # => '<p>Hey!</p>'
9191

9292
## Development
9393

94+
### Install dependencies
95+
96+
```sh
97+
bundle install
98+
```
99+
94100
### Run Rubocop
95101

102+
```sh
103+
rake rubocop
104+
```
105+
106+
### Run tests
107+
108+
```sh
109+
rake spec
110+
```
96111

97112

98113
## Licence

0 commit comments

Comments
 (0)