(FACT-3468) Don't mutate global logger state #3904
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: Unit tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
env: | |
CI: true | |
jobs: | |
linux_unit_tests: | |
name: Ruby version | |
strategy: | |
matrix: | |
ruby: | |
- '2.5' | |
- '2.7' | |
- '3.0' | |
- '3.2' | |
- 'jruby-9.3.14.0' | |
- 'jruby-9.4.7.0' | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout current PR | |
uses: actions/checkout@v4 | |
- name: Rspec checks | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- run: gem update bundler | |
- run: bundle install --jobs 3 --retry 3 | |
- run: bundle exec rake spec_random | |
windows_unit_tests: | |
name: Windows tests with Ruby ${{ matrix.ruby }} | |
strategy: | |
matrix: | |
ruby: | |
- '2.7' | |
- '3.2' | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout current PR | |
uses: actions/checkout@v4 | |
- name: Rspec checks | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: ${{ matrix.ruby }} | |
- run: gem update bundler | |
- run: bundle install --jobs 3 --retry 3 | |
- run: bundle exec rake spec_random |