Skip to content

Merge pull request #248 from takuya-o/new_chatgpt_elaborate #56

Merge pull request #248 from takuya-o/new_chatgpt_elaborate

Merge pull request #248 from takuya-o/new_chatgpt_elaborate #56

Workflow file for this run

name: ubuntu
on: [push, pull_request]
jobs:
build:
name: build ${{ matrix.ruby }}
strategy:
matrix:
ruby: [ '3.0', 2.7, 2.6 ]
runs-on: ubuntu-latest
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 test
run: bundle exec rake spec