Sha256: 9f1068eff050356d7a813391c5c0f7cb0f7e22c519a527e075e336ee456be9c0

Contents?: true

Size: 517 Bytes

Versions: 2

Compression:

Stored size: 517 Bytes

Contents

name: test

on: [push, pull_request]

jobs:
  build:
    name: build (${{ matrix.ruby }} / ${{ matrix.os }})
    strategy:
      matrix:
        ruby: [ 2.7, 2.6, head, jruby-9.3 ]
        os: [ ubuntu-latest, macos-latest ]
    runs-on: ${{ matrix.os }}
    steps:
    - uses: actions/checkout@v4
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true # 'bundle install' and cache
    - name: Run test
      run: bundle exec rake test

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
open3-0.2.1 .github/workflows/test-jruby.yml
open3-0.2.0 .github/workflows/test-jruby.yml