Skip to content

Commit

Permalink
Try to isolate sad test
Browse files Browse the repository at this point in the history
  • Loading branch information
jcpunk committed Feb 13, 2024
1 parent cf83bf1 commit 8e6f350
Showing 1 changed file with 23 additions and 23 deletions.
46 changes: 23 additions & 23 deletions .github/workflows/unit_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,35 +13,35 @@ env:
CI: true

jobs:
linux_unit_tests:
name: Ruby version
strategy:
matrix:
ruby:
- '2.6'
- '2.7'
- '3.0'
- '3.2'
- 'jruby-9.3.9.0'
runs-on: ubuntu-20.04
steps:
- name: Checkout current PR
uses: actions/checkout@v4
#linux_unit_tests:
# name: Ruby version
# strategy:
# matrix:
# ruby:
# - '2.6'
# - '2.7'
# - '3.0'
# - '3.2'
# - 'jruby-9.3.9.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
# - 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'
# - '2.7'
- '3.2'
runs-on: windows-2019
steps:
Expand All @@ -54,4 +54,4 @@ jobs:
ruby-version: ${{ matrix.ruby }}
- run: gem update bundler
- run: bundle install --jobs 3 --retry 3
- run: bundle exec rake spec_random
- run: bundle exec rspec --bisect --order random:12882 spec

0 comments on commit 8e6f350

Please sign in to comment.