Sha256: 6ff3ab7bd0f7d8a84cf0a915c593834a577d8f33f3fda261512b801b2adb8110

Contents?: true

Size: 626 Bytes

Versions: 6

Compression:

Stored size: 626 Bytes

Contents

name: Ruby CI

on:
  push:

env:
  CI: true
permissions:
  contents: read
  statuses: write

jobs:
  build:
    runs-on: ubuntu-latest
    defaults:
      run:
        working-directory: ./

    strategy:
      matrix:
        ruby-version: ['3.1', '3.2', '3.3', '3.4', jruby]

    steps:
    - uses: actions/checkout@v4
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby-version }}
    - name: Install dependencies
      run: bundle install
    - name: Rubocop Check
      run: bundle exec rubocop
    - name: Run all tests
      run: bundle exec rspec
      shell: bash

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simplycop-2.12.1 .github/workflows/ci.yml
simplycop-2.12.0 .github/workflows/ci.yml
simplycop-2.11.1 .github/workflows/ci.yml
simplycop-2.11.0 .github/workflows/ci.yml
simplycop-2.10.0 .github/workflows/ci.yml
simplycop-2.9.1 .github/workflows/ci.yml