Sha256: f966b9b0fa65f399fd0e6f96eb4f71c6aeeee5e0f246f97a455fdc51967f5550

Contents?: true

Size: 747 Bytes

Versions: 7

Compression:

Stored size: 747 Bytes

Contents

name: Run Rubocop

on:
  pull_request:
    branches:
    - master

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby 3.2.0
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3.2.0
        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

7 entries across 7 versions & 1 rubygems

Version Path
runger_style-0.6.0 .github/workflows/ruby.yml
runger_style-0.5.1 .github/workflows/ruby.yml
runger_style-0.5.0 .github/workflows/ruby.yml
runger_style-0.4.0 .github/workflows/ruby.yml
runger_style-0.3.0 .github/workflows/ruby.yml
runger_style-0.2.23 .github/workflows/ruby.yml
runger_style-0.2.22 .github/workflows/ruby.yml