Skip to content

fix: add y/n to all yes\? #79

fix: add y/n to all yes\?

fix: add y/n to all yes\? #79

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
env:
BUNDLE_JOBS: 4
BUNDLE_RETRY: 3
BUNDLE_GEMFILE: ${{ matrix.gemfile }}
CI: true
strategy:
fail-fast: false
matrix:
ruby: ["3.0"]
gemfile: ["gemfiles/rails7.gemfile"]
include:
- ruby: "2.6"
gemfile: "gemfiles/rails6.gemfile"
- ruby: "3.1"
gemfile: "gemfiles/railsmaster.gemfile"
- ruby: "2.7"
gemfile: "gemfiles/rails6.gemfile"
steps:
- uses: actions/checkout@v3
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run Ruby Next
run: bundle exec rake nextify
- name: Run tests
run: |
bundle exec rake test:isolated