Skip to content

Add Ruby 3.4 matrix to Github Actions #44

Add Ruby 3.4 matrix to Github Actions

Add Ruby 3.4 matrix to Github Actions #44

Workflow file for this run

name: CI Workflow
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
Test-Ruby:
runs-on: ubuntu-latest
strategy:
matrix:
ruby:
- '3.0'
- '3.1'
- '3.2'
- '3.3'
- '3.4'
name: Ruby ${{ matrix.ruby }}
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: false
ruby-version: ${{ matrix.ruby }}
- name: Debug Environment
run: |
echo "Ruby version: $(ruby -v)"
echo "Bundler version: $(bundle -v)"
- name: Run CI pipeline for the gem
run: bin/check