Skip to content

Merge pull request #5 from amo13/patch-1 #34

Merge pull request #5 from amo13/patch-1

Merge pull request #5 from amo13/patch-1 #34

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
ruby_version:
- "3.0"
- "3.1"
- "3.2"
- "3.3"
steps:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby_version }}
bundler: default
bundler-cache: true
- name: Run tests
run: bundle exec rake test