Sha256: 5760b91c14a9158cdbb62b64458108f2478ad9cd7cc1b2c98a3e70c5ea1c8ce3

Contents?: true

Size: 592 Bytes

Versions: 6

Compression:

Stored size: 592 Bytes

Contents

name: test

on: [push, pull_request]

jobs:
  test:
    strategy:
      fail-fast: false
      matrix:
        ruby: [ 2.7, head, jruby ]
        os: [ ubuntu ]

    name: >-
      ${{matrix.os}}-ruby-${{matrix.ruby}}
    runs-on: ${{matrix.os}}-latest
    continue-on-error: ${{matrix.ruby == 'head'}}

    steps:
      - name: Check out
        uses: actions/checkout@master

      - name: Set up ruby and bundle
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{matrix.ruby}}
          bundler-cache: true

      - name: Run test
        run: bundle exec rake test

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
sorted_set-1.0.2-java .github/workflows/test.yml
sorted_set-1.0.2 .github/workflows/test.yml
sorted_set-1.0.1-java .github/workflows/test.yml
sorted_set-1.0.1 .github/workflows/test.yml
sorted_set-1.0.0-java .github/workflows/test.yml
sorted_set-1.0.0 .github/workflows/test.yml