Sha256: dcfc4a17376fb8c14f8bf2d395e5440a5bf0d01edf76ce256f5294459a694c28

Contents?: true

Size: 703 Bytes

Versions: 23

Compression:

Stored size: 703 Bytes

Contents

name: Ruby CI

# Controls when the workflow will run
on:
  # Triggers the workflow on push or pull request events but only for the master branch
  push:
    branches:
      - 'master'
  pull_request:
    branches:
      - 'master'

jobs:
  ci-build:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby-version: [2.7, 2.6, 2.5]

    # Check-out repo
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Set up Ruby ${{ matrix.ruby-version }}
        uses: ruby/setup-ruby@v1
        with:
          ruby-version: ${{ matrix.ruby-version }}
      - name: Install dependencies
        run: bundle install
      - name: Run RSpec
        run: bundle exec rspec

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
muffin_man-1.5.1 .github/workflows/ci.yml
muffin_man-1.5.0 .github/workflows/ci.yml
muffin_man-1.4.13 .github/workflows/ci.yml
muffin_man-1.4.12 .github/workflows/ci.yml
muffin_man-1.4.11 .github/workflows/ci.yml
muffin_man-1.4.10 .github/workflows/ci.yml
muffin_man-1.4.9 .github/workflows/ci.yml
muffin_man-1.4.8 .github/workflows/ci.yml
muffin_man-1.4.7 .github/workflows/ci.yml
muffin_man-1.4.6 .github/workflows/ci.yml
muffin_man-1.4.5 .github/workflows/ci.yml
muffin_man-1.4.4 .github/workflows/ci.yml
muffin_man-1.4.3 .github/workflows/ci.yml
muffin_man-1.4.2 .github/workflows/ci.yml
muffin_man-1.4.1 .github/workflows/ci.yml
muffin_man-1.4.0 .github/workflows/ci.yml
muffin_man-1.3.0 .github/workflows/ci.yml
muffin_man-1.2.0 .github/workflows/ci.yml
muffin_man-1.1.0 .github/workflows/ci.yml
muffin_man-1.0.2 .github/workflows/ci.yml