Sha256: 0a89556d506ebcc061149662f1af1b2d7b578508c9897db304284a5c8a5be450

Contents?: true

Size: 619 Bytes

Versions: 3

Compression:

Stored size: 619 Bytes

Contents

name: rspec

on:
  push:
    branches:
      - main

  pull_request:
    branches:
      - main

env:
  RAILS_ENV: test

jobs:
  test:
    runs-on: ubuntu-latest
    strategy:
      fail-fast: false

      matrix:
        ruby:
          - 2.6
          - 2.7
          - 3.0
          - 3.1

    steps:
      - uses: actions/checkout@v2

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

      - name: Run tests
        run: |
          bundle exec rspec
        continue-on-error: ${{ matrix.allow_failures == 'true' }}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
google_spreadsheet_fetcher-2.0.0 .github/workflows/main.yml
google_spreadsheet_fetcher-1.9.1 .github/workflows/main.yml
google_spreadsheet_fetcher-1.9.0 .github/workflows/main.yml