Sha256: 07d714389d4cd9d42fbb63a971fa21e2f247c5a1bc423b94750e76a04f35ce58

Contents?: true

Size: 556 Bytes

Versions: 3

Compression:

Stored size: 556 Bytes

Contents

name: CI

on:
  push:
    branches: [master, develop]
  pull_request:

jobs:
  rspec:
    name: Ruby ${{ matrix.ruby }}
    runs-on: ubuntu-20.04

    strategy:
      fail-fast: false
      matrix:
        include:
        - { ruby: 2.7 }
        - { ruby: '3.0' }
        - { ruby: 3.1 }
        - { ruby: 3.2 }

    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

Version data entries

3 entries across 3 versions & 2 rubygems

Version Path
infreemation-0.2.4 .github/workflows/ci.yml
icasework-0.1.4 .github/workflows/ci.yml
icasework-0.1.3 .github/workflows/ci.yml