Sha256: 56ea7764cef227f22c2161c31369408117cffdd5b533cdc6f49eb10848b8827b

Contents?: true

Size: 794 Bytes

Versions: 4

Compression:

Stored size: 794 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 }}
          bundler-cache: true
      - name: Install dependencies
        run: bundle install
      - name: Run RSpec
        run: bundle exec rspec
      - name: Run Rubocop
        run: bundle exec rubocop


Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
muffin_man-2.4.8 .github/workflows/ci.yml
muffin_man-2.4.7 .github/workflows/ci.yml
muffin_man-2.4.6 .github/workflows/ci.yml
muffin_man-2.4.5 .github/workflows/ci.yml