Sha256: fbac7734f82923b83603f42ece368eb3f5cd1a3920730ed5b4c9716bad501238

Contents?: true

Size: 627 Bytes

Versions: 6

Compression:

Stored size: 627 Bytes

Contents

name: Ruby CI

on:
  push:
    branches:

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

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

    strategy:
      matrix:
        ruby-version: [2.7, 3.0, 3.1, jruby]

    steps:
    - uses: actions/checkout@v3
    - 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-1.12.4 .github/workflows/ci.yml
simplycop-1.12.3 .github/workflows/ci.yml
simplycop-1.12.2 .github/workflows/ci.yml
simplycop-1.12.1 .github/workflows/ci.yml
simplycop-1.12.0 .github/workflows/ci.yml
simplycop-1.11.0 .github/workflows/ci.yml