Sha256: c0012d1c31603cb6f8f51c17349a43280b27fae59059765c5d5c3b6347124502

Contents?: true

Size: 711 Bytes

Versions: 2

Compression:

Stored size: 711 Bytes

Contents

name: Run RuboCop

on:
  pull_request:
    branches:
    - main

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - 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

2 entries across 2 versions & 1 rubygems

Version Path
runger_style-2.8.0 .github/workflows/ruby.yml
runger_style-2.7.0 .github/workflows/ruby.yml