Sha256: 23686e27b9b9663958d59fefecc3bc3318603bedc94f3fc116978b38f28d1cd0

Contents?: true

Size: 634 Bytes

Versions: 13

Compression:

Stored size: 634 Bytes

Contents

name: Ruby CI

on:
  push:
    branches:

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', 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

13 entries across 13 versions & 1 rubygems

Version Path
simplycop-2.1.0 .github/workflows/ci.yml
simplycop-2.0.1 .github/workflows/ci.yml
simplycop-2.0.0 .github/workflows/ci.yml
simplycop-1.19.3 .github/workflows/ci.yml
simplycop-1.19.2 .github/workflows/ci.yml
simplycop-1.19.1 .github/workflows/ci.yml
simplycop-1.19.0 .github/workflows/ci.yml
simplycop-1.17.0 .github/workflows/ci.yml
simplycop-1.16.6 .github/workflows/ci.yml
simplycop-1.16.5 .github/workflows/ci.yml
simplycop-1.16.4 .github/workflows/ci.yml
simplycop-1.16.3 .github/workflows/ci.yml
simplycop-1.16.2 .github/workflows/ci.yml