Reduce logging noise if reactor is inspected. #509
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: Development | |
on: [push, pull_request] | |
jobs: | |
test: | |
name: ${{matrix.ruby}} on ${{matrix.os}} | |
runs-on: ${{matrix.os}}-latest | |
continue-on-error: ${{matrix.experimental}} | |
strategy: | |
matrix: | |
os: | |
- ubuntu | |
- macos | |
ruby: | |
- "2.7" | |
- "3.0" | |
- "3.1" | |
- "3.2" | |
experimental: [false] | |
env: [""] | |
include: | |
- os: ubuntu | |
ruby: truffleruby | |
experimental: true | |
- os: ubuntu | |
ruby: jruby | |
env: JRUBY_OPTS="--debug -X+O" | |
experimental: true | |
- os: ubuntu | |
ruby: head | |
experimental: true | |
- os: ubuntu | |
ruby: "3.2" | |
env: COVERAGE=PartialSummary | |
experimental: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{matrix.ruby}} | |
bundler-cache: true | |
- name: Run tests | |
timeout-minutes: 5 | |
run: ${{matrix.env}} bundle exec rspec | |
- name: Run external tests | |
timeout-minutes: 5 | |
if: matrix.experimental == false && matrix.os == 'ubuntu' | |
run: ${{matrix.env}} bundle exec bake external |