Extract test helper method wait_for_rails_to_boot
#2828
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: CI | |
on: [push, pull_request] | |
jobs: | |
test: | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
gemfile: | |
- Gemfile | |
- gemfiles/Gemfile-rails-main | |
ruby: ["3.2", "3.3"] | |
include: | |
- gemfile: "gemfiles/Gemfile-rails-main" | |
experimental: true | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 15 | |
env: | |
BUNDLE_GEMFILE: ${{ github.workspace }}/${{ matrix.gemfile }} | |
continue-on-error: ${{ !!matrix.experimental }} | |
name: Ruby ${{ matrix.ruby }} on ${{ matrix.os }} with ${{matrix.gemfile}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Remove Gemfile.lock | |
if: (matrix.gemfile == 'Gemfile') && (matrix.ruby == 'head') | |
run: "rm ${{ matrix.gemfile }}.lock" | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler: latest | |
ruby-version: ${{ matrix.ruby }} | |
bundler-cache: true | |
cache-version: 7 | |
- name: Run tests | |
run: bundle exec rake | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
bundler: latest | |
bundler-cache: true | |
- name: Typecheck | |
run: bundle exec srb tc | |
- name: Lint Ruby files | |
run: bin/rubocop |