[logging] support for ActiveSupport::BroadcastLogger logger instances #437
Workflow file for this run
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: Build (Linter + TypeCheck + RSpec) | |
on: [push] | |
jobs: | |
test-previous: | |
name: '(OS: ${{ matrix.os }}) Ruby ${{ matrix.ruby_version }}' | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: ['3.1', '3.2'] | |
os: [ubuntu-latest] | |
runs-on: ${{ matrix.os }} | |
env: | |
BUNDLE_GEMFILE: github_ci/ruby${{ matrix.ruby_version }}.gemfile | |
BUNDLE_RETRY: 3 | |
BUNDLE_JOBS: 4 | |
BUNDLE_FORCE_RUBY_PLATFORM: 1 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: supercharge/redis-github-action@1.7.0 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- name: (Test) RSpec | |
run: bundle exec rake rspec | |
test-mainstream: | |
name: '(OS: ${{ matrix.os }}) Ruby ${{ matrix.ruby_version }}' | |
strategy: | |
fail-fast: false | |
matrix: | |
ruby_version: ['3.3'] | |
os: [ubuntu-latest] | |
env: | |
BUNDLE_RETRY: 3 | |
BUNDLE_JOBS: 4 | |
BUNDLE_FORCE_RUBY_PLATFORM: 1 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: supercharge/redis-github-action@1.7.0 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby_version }} | |
bundler-cache: true | |
- name: (Linter) Rubocop | |
run: bundle exec rake rubocop | |
- name: (TypeCheck) Steep | |
run: bundle exec rbs collection install && bundle exec steep check --jobs 10 | |
continue-on-error: true | |
- name: (Test) RSpec | |
run: bundle exec rake rspec |