Sha256: 56ff9b5d8bcf2847c199670145801df7ec6878e820abfa57f08ec2007a2b47d1

Contents?: true

Size: 747 Bytes

Versions: 15

Compression:

Stored size: 747 Bytes

Contents

name: Run RuboCop

on:
  pull_request:
    branches:
      - '*'
  push:
    branches:
      - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v4
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        bundler-cache: true
    - name: Set up
      run: |
        gem install bundler -v 2.1.4
        bundle install --jobs 4 --retry 3
    - name: Run RuboCop
      run: bin/rubocop --format clang
    - name: Ensure alpha version
      run: grep alpha $(find . -type f -name version.rb)
    - name: Ensure no git diff
      run: git diff --exit-code && git diff-index --quiet --cached HEAD
    - name: Ensure "## Unreleased" is in CHANGELOG.md
      run: grep "^## Unreleased" CHANGELOG.md

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
runger_style-4.1.0 .github/workflows/ruby.yml
runger_style-4.0.1 .github/workflows/ruby.yml
runger_style-4.0.0 .github/workflows/ruby.yml
runger_style-3.0.0 .github/workflows/ruby.yml
runger_style-2.19.0 .github/workflows/ruby.yml
runger_style-2.18.0 .github/workflows/ruby.yml
runger_style-2.17.0 .github/workflows/ruby.yml
runger_style-2.16.0 .github/workflows/ruby.yml
runger_style-2.15.0 .github/workflows/ruby.yml
runger_style-2.14.0 .github/workflows/ruby.yml
runger_style-2.13.0 .github/workflows/ruby.yml
runger_style-2.12.0 .github/workflows/ruby.yml
runger_style-2.11.0 .github/workflows/ruby.yml
runger_style-2.10.0 .github/workflows/ruby.yml
runger_style-2.9.0 .github/workflows/ruby.yml