-
Notifications
You must be signed in to change notification settings - Fork 11
44 lines (40 loc) · 1.14 KB
/
autocorrect.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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@v5
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`.