Sha256: 6a2903f4417521231dbe944b8b7feb0f090a0acebaea67468d2f5e153eb7d75d

Contents?: true

Size: 1.14 KB

Versions: 6

Compression:

Stored size: 1.14 KB

Contents

name: autocorrect

on:
  schedule:
  - cron: '29 6 * * 6'

jobs:
  lint:
    runs-on: ubuntu-latest

    strategy:
      matrix:
        ruby: [ 3.0 ]

    steps:
    - uses: actions/checkout@v3
    - name: Set up Ruby
      uses: ruby/setup-ruby@v1
      with:
        ruby-version: ${{ matrix.ruby }}
    - name: Cache dependencies
      uses: actions/cache@v3
      with:
        path: vendor/bundle
        key: ${{ runner.os }}-${{ matrix.ruby }}-gems-${{ hashFiles('**/Gemfile.lock') }}
        restore-keys: |
          ${{ runner.os }}-${{ matrix.ruby }}-gems-
    - name: Install dependencies
      run: |
        bundle config path vendor/bundle
        bundle install --jobs 4 --retry 3
    - name: Run tests
      run: bundle exec rake test
    - name: Run linter
      run: bundle exec rubocop --auto-correct
    - name: Create Pull Request
      uses: peter-evans/create-pull-request@v3
      with:
        branch: update/lint-autocorrect
        delete-branch: true
        commit-message: '🔧 autocorrect by Rubocop'
        title: '[rubocop] Automatic corrections'
        body: |
          Please review automatic changes proposed by `rubocop -a`.

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
legitbot-1.9.0 .github/workflows/autocorrect.yml
legitbot-1.8.0 .github/workflows/autocorrect.yml
legitbot-1.7.3 .github/workflows/autocorrect.yml
legitbot-1.7.2 .github/workflows/autocorrect.yml
legitbot-1.7.1 .github/workflows/autocorrect.yml
legitbot-1.7.0 .github/workflows/autocorrect.yml