Fix virtual
resolution on Illumos LX
#4065
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.8.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 }} | |
bundler-cache: true | |
- 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 }} | |
bundler-cache: true | |
- run: bundle exec rake spec_random |