Sha256: a7c33f2a33e1fb277612e87656f6df1d88abbfcbb6bfdeb4df55f902de15b182

Contents?: true

Size: 460 Bytes

Versions: 2

Compression:

Stored size: 460 Bytes

Contents

name: Ruby

on: [push, pull_request]

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      matrix:
        ruby-version: ['2.5', '2.6', '2.7', '3.0']

    steps:
    - uses: actions/checkout@v2
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
        bundler-cache: true # runs 'bundle install' and caches installed gems automatically
    - name: Run tests
      run: bundle exec rake

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
saxlsx-1.11.0 .github/workflows/ruby.yml
saxlsx-1.10.0 .github/workflows/ruby.yml