Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Merge pull request #2 from sublimestyle90/SUNM-36464/update-gemspec-file #4

Merge pull request #2 from sublimestyle90/SUNM-36464/update-gemspec-file

Merge pull request #2 from sublimestyle90/SUNM-36464/update-gemspec-file #4

Workflow file for this run

name: Ruby CI
on: [ push, pull_request ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
# Due to https://github.com/actions/runner/issues/849, we have to use quotes for '3.0'
ruby: [ 2.7, '3.0', '3.1', '3.2' ]
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- run: bundle install
- run: bundle exec rspec
rubocop:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1'
- run: bundle install
- run: bundle exec rubocop