Sha256: 15128d6c02a8bd31e229b4ef0c14eadce3e7dc5e06d36b998419f535ed79431d

Contents?: true

Size: 409 Bytes

Versions: 1

Compression:

Stored size: 409 Bytes

Contents

name: Ruby

on: ['push']

jobs:
  build:
    runs-on: ubuntu-latest
    name: Ruby ${{ matrix.ruby }}
    strategy:
      matrix:
        ruby-version: ['3.1', '3.0', '2.7']

    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
        bundler-cache: true
    - name: Run rubocop
      run: bundle exec rubocop

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
iceland-2.0.0 .github/workflows/main.yml