Skip to content

Workflow to publish gem #26

Workflow to publish gem

Workflow to publish gem #26

Workflow file for this run

name: Ruby
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ["3.0", "3.1", "3.2", "3.3"]
name: "Tests on Ruby ${{ matrix.ruby }}"
steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby-version }}
bundler-cache: true
- name: Test and lint
run: bundle exec rake