From 47aa865cbd316415276abb2cc881bd49f4e5f660 Mon Sep 17 00:00:00 2001 From: Dejan Simic Date: Sat, 4 Jan 2025 01:14:46 +0100 Subject: [PATCH] More versions --- .github/workflows/test.yml | 10 +++++++++- README.md | 15 +++++++++++++++ 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 37308b3..24424f3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,7 +7,15 @@ jobs: strategy: fail-fast: false matrix: - ruby: [2.5, 2.6, 2.7, '3.0', head, truffleruby, truffleruby-head] + ruby: + - '2.7' + - '3.0' + - '3.1' + - '3.2' + - '3.3' + - head + - truffleruby + - truffleruby-head runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index 71d985d..7b19348 100644 --- a/README.md +++ b/README.md @@ -91,8 +91,23 @@ comment.text_html # => '

Hey!

' ## Development +### Install dependencies + +```sh +bundle install +``` + ### Run Rubocop +```sh +rake rubocop +``` + +### Run tests + +```sh +rake spec +``` ## Licence