We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afa6e1b commit 78b1dd9Copy full SHA for 78b1dd9
.github/workflows/test.yml
@@ -45,5 +45,18 @@ jobs:
45
RUBYOPT: --enable-frozen_string_literal
46
- if: ${{ matrix.ruby == 'head' && startsWith(matrix.os, 'ubuntu') }}
47
run: bundle exec rake rdoc
48
- - if: ${{ matrix.ruby == 'head' && startsWith(matrix.os, 'ubuntu') }}
49
- run: bundle exec rake rubocop
+ lint:
+ runs-on: ubuntu-latest
50
+ steps:
51
+ - uses: actions/checkout@v4
52
+ - name: Set up Ruby
53
+ uses: ruby/setup-ruby@v1
54
+ with:
55
+ ruby-version: "3.3"
56
+ bundler-cache: true
57
+ - name: Run rubocop
58
+ run: bundle exec rubocop
59
+ # Just to make sure the format_generated_files task is working
60
+ - name: Sanity check for the format_generated_files task
61
+ run: |
62
+ bundle exec rake generate format_generated_files
0 commit comments