Skip to content

Merge pull request #70 from m-nakamura145/update-checkout-action #25

Merge pull request #70 from m-nakamura145/update-checkout-action

Merge pull request #70 from m-nakamura145/update-checkout-action #25

Workflow file for this run

name: ubuntu
on:
pull_request:
push:
branches:
- master
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
ruby: [ 2.3, 2.4, 2.5, 2.6, 2.7, 3.0, 3.1, 3.2, 3.3, head ]
steps:
- uses: actions/checkout@v4
- name: Setup ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
- name: Install Dependencies
run: |
bundle install
- name: Run Test
run: bundle exec rake spec