Sha256: eabc440e78da897ecdee8203b712fbe86ee72054fecb7b0f465457011bb64673

Contents?: true

Size: 475 Bytes

Versions: 2

Compression:

Stored size: 475 Bytes

Contents

name: Ruby

on: [push,pull_request]

jobs:
  build:
    continue-on-error: true
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: [2.6.7, 2.7.3, 3.0.1]
    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
    - name: Run the default task
      run: |
        gem install bundler -v 2.2.15
        bundle install
        bundle exec rake spec

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
structured_csv-0.2.0 .github/workflows/main.yml
structured_csv-0.1.1 .github/workflows/main.yml