Skip to content

Commit

Permalink
Re-run on windows with the same seed
Browse files Browse the repository at this point in the history
  • Loading branch information
mvz committed Apr 1, 2024
1 parent c1826d5 commit d10f8fb
Showing 1 changed file with 2 additions and 66 deletions.
68 changes: 2 additions & 66 deletions .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,57 +18,11 @@ env:
JRUBY_OPTS: "--dev"

jobs:
test-ubuntu:
runs-on: ubuntu-latest

strategy:
matrix:
ruby: ["3.1", "3.2", "jruby-9.4", "3.3"]
appraisal: [cucumber_8, cucumber_9]
include:
- ruby: "3.0"
appraisal: cucumber_8

env:
BUNDLE_GEMFILE: gemfiles/${{ matrix.appraisal }}.gemfile

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run specs
run: bundle exec rake spec
- name: Run cukes
run: bundle exec rake cucumber

test-macos:
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]

runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run specs
run: bundle exec rake spec
- name: Run cukes
run: bundle exec rake cucumber

test-windows:
strategy:
fail-fast: false
matrix:
ruby: ["3.0", "3.1", "3.2", "3.3"]
ruby: ["3.1"]

runs-on: windows-latest

Expand All @@ -82,22 +36,4 @@ jobs:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true
- name: Run specs
run: bundle exec rake spec

checks:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.3"
bundler-cache: true
- name: Install license_finder
run: gem install license_finder
- name: Run linters
run: bundle exec rake lint
- name: Run license_finder
run: license_finder
run: bundle exec rspec --seed 27999

0 comments on commit d10f8fb

Please sign in to comment.