From 428c79adef89ef8e05155bff65932d350d9d2210 Mon Sep 17 00:00:00 2001 From: Hassan Zamani Date: Sun, 23 Jun 2024 02:51:53 +0200 Subject: [PATCH] Update workflow Ruby versions --- .github/workflows/ruby.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ruby.yml b/.github/workflows/ruby.yml index 3527577..2041eb7 100644 --- a/.github/workflows/ruby.yml +++ b/.github/workflows/ruby.yml @@ -1,10 +1,6 @@ name: Ruby -on: - push: - branches: [master] - pull_request: - branches: [master] +on: [push, pull_request] permissions: contents: read @@ -14,10 +10,13 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - ruby-version: ["2.6", "2.7", "3.0", "3.1"] + ruby-version: + - '3.1' + - '3.2' + - '3.3' steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Set up Ruby uses: ruby/setup-ruby@v1 with: