Sha256: 8941a15ebcef9256d9b75e592f6d12fd5f17cddf9d30ec5c8f36fb3cb27f10fa

Contents?: true

Size: 764 Bytes

Versions: 26

Compression:

Stored size: 764 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
      - name: Run Rubocop
        run: bundle exec rubocop


Version data entries

26 entries across 26 versions & 1 rubygems

Version Path
muffin_man-2.4.4 .github/workflows/ci.yml
muffin_man-2.4.3 .github/workflows/ci.yml
muffin_man-2.4.2 .github/workflows/ci.yml
muffin_man-2.3.0 .github/workflows/ci.yml
muffin_man-2.2.2 .github/workflows/ci.yml
muffin_man-2.2.1 .github/workflows/ci.yml
muffin_man-2.1.3 .github/workflows/ci.yml
muffin_man-2.1.0 .github/workflows/ci.yml
muffin_man-2.0.6 .github/workflows/ci.yml
muffin_man-2.0.5 .github/workflows/ci.yml
muffin_man-2.0.4 .github/workflows/ci.yml
muffin_man-2.0.3 .github/workflows/ci.yml
muffin_man-2.0.2 .github/workflows/ci.yml
muffin_man-2.0.1 .github/workflows/ci.yml
muffin_man-2.0.0 .github/workflows/ci.yml
muffin_man-1.5.12 .github/workflows/ci.yml
muffin_man-1.5.11 .github/workflows/ci.yml
muffin_man-1.5.10 .github/workflows/ci.yml
muffin_man-1.5.9 .github/workflows/ci.yml
muffin_man-1.5.8 .github/workflows/ci.yml