You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.1 KiB
53 lines
1.1 KiB
name: Ruby Linting |
|
on: |
|
merge_group: |
|
push: |
|
branches: |
|
- 'main' |
|
- 'stable-*' |
|
paths: |
|
- 'Gemfile*' |
|
- '.rubocop*.yml' |
|
- '.ruby-version' |
|
- 'bin/rubocop' |
|
- 'config/brakeman.ignore' |
|
- '**/*.rb' |
|
- '**/*.rake' |
|
- '.github/workflows/lint-ruby.yml' |
|
|
|
pull_request: |
|
paths: |
|
- 'Gemfile*' |
|
- '.rubocop*.yml' |
|
- '.ruby-version' |
|
- 'bin/rubocop' |
|
- 'config/brakeman.ignore' |
|
- '**/*.rb' |
|
- '**/*.rake' |
|
- '.github/workflows/lint-ruby.yml' |
|
|
|
jobs: |
|
lint: |
|
runs-on: ubuntu-latest |
|
|
|
env: |
|
BUNDLE_ONLY: development |
|
|
|
steps: |
|
- name: Clone repository |
|
uses: actions/checkout@v4 |
|
|
|
- name: Set up Ruby |
|
uses: ruby/setup-ruby@v1 |
|
with: |
|
bundler-cache: true |
|
|
|
- name: Set-up RuboCop Problem Matcher |
|
uses: r7kamura/rubocop-problem-matchers-action@v1 |
|
|
|
- name: Run rubocop |
|
run: bin/rubocop |
|
|
|
- name: Run brakeman |
|
if: always() # Run both checks, even if the first failed |
|
run: bin/brakeman
|
|
|