Sha256: b15ddd2ac408861dc102c622e1e3f4bbbb41b419ecbcd4ac28c19856387bb8e1

Contents?: true

Size: 641 Bytes

Versions: 16

Compression:

Stored size: 641 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: ['2.7', '3.0', '3.1', '3.2', 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

16 entries across 16 versions & 1 rubygems

Version Path
simplycop-1.13.11 .github/workflows/ci.yml
simplycop-1.13.9 .github/workflows/ci.yml
simplycop-1.13.8 .github/workflows/ci.yml
simplycop-1.13.7 .github/workflows/ci.yml
simplycop-1.13.5 .github/workflows/ci.yml
simplycop-1.13.1 .github/workflows/ci.yml
simplycop-1.13.0 .github/workflows/ci.yml
simplycop-1.12.24 .github/workflows/ci.yml
simplycop-1.12.23 .github/workflows/ci.yml
simplycop-1.12.22 .github/workflows/ci.yml
simplycop-1.12.21 .github/workflows/ci.yml
simplycop-1.12.20 .github/workflows/ci.yml
simplycop-1.12.18 .github/workflows/ci.yml
simplycop-1.12.17 .github/workflows/ci.yml
simplycop-1.12.16 .github/workflows/ci.yml
simplycop-1.12.15 .github/workflows/ci.yml