Sha256: b084328cc853a0d3786b38e114eae407c2e44daa4184031acaee8d8ba5b08494

Contents?: true

Size: 747 Bytes

Versions: 5

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.3.0
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: 3.3.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

5 entries across 5 versions & 1 rubygems

Version Path
runger_style-1.4.0 .github/workflows/ruby.yml
runger_style-1.3.0 .github/workflows/ruby.yml
runger_style-1.2.0 .github/workflows/ruby.yml
runger_style-1.1.0 .github/workflows/ruby.yml
runger_style-1.0.0 .github/workflows/ruby.yml