Sha256: 52374f5a48e8a74324f44444dc0a28f4e670cc34c26a0d065af7d8e3bcbbe7e1

Contents?: true

Size: 755 Bytes

Versions: 1

Compression:

Stored size: 755 Bytes

Contents

name: CI

on:
- push

jobs:
  cruby:
    name: Test
    runs-on: ${{ matrix.os }}

    strategy:
      fail-fast: false
      matrix:
        os:
        - ubuntu-latest
        - macos-latest
        - windows-latest
        ruby:
        - 3.0
        - 2.7
        - 2.6
        - 2.5
        - 2.4
        - debug
        exclude:
        - os: windows-latest
          ruby: 3.0
        - os: windows-latest
          ruby: debug

    steps:
    - uses: actions/checkout@v2

    - name: Setup Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}

    - run: gem install bundler
    - run: bundle install

    - run: rake --trace compile

    - run: rake build
    - run: gem install pkg/*gem

    - run: rake spec

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
enumerable-statistics-2.0.2 .github/workflows/ci.yml