🔧 設定追加(chatgpt_elaborate.rb): 応答の最大トークン数、最大待ち時間、温度のデフォルト値を設定可能にしました #67
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ubuntu | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: build ${{ matrix.ruby }} | |
strategy: | |
matrix: | |
ruby: [ '3.3', '3.2', '3.1', '3.0' ] | |
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 |