Skip to content

Merge pull request #33 from yujideveloper/feature/drop-outdated-ruby-… #24

Merge pull request #33 from yujideveloper/feature/drop-outdated-ruby-…

Merge pull request #33 from yujideveloper/feature/drop-outdated-ruby-… #24

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: ['3.0', '3.1', '3.2', '3.3']
steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake spec