2023-01-29 23:39:31 +00:00
|
|
|
name: Ruby Linting
|
|
|
|
on:
|
2024-07-07 09:39:31 +00:00
|
|
|
merge_group:
|
2023-01-29 23:39:31 +00:00
|
|
|
push:
|
2024-07-07 09:39:31 +00:00
|
|
|
branches:
|
|
|
|
- 'main'
|
|
|
|
- 'stable-*'
|
2023-01-29 23:39:31 +00:00
|
|
|
paths:
|
|
|
|
- 'Gemfile*'
|
2023-02-16 06:33:50 +00:00
|
|
|
- '.rubocop*.yml'
|
|
|
|
- '.ruby-version'
|
2023-07-11 13:23:57 +00:00
|
|
|
- 'config/brakeman.ignore'
|
2023-01-29 23:39:31 +00:00
|
|
|
- '**/*.rb'
|
|
|
|
- '**/*.rake'
|
|
|
|
- '.github/workflows/lint-ruby.yml'
|
|
|
|
|
|
|
|
pull_request:
|
|
|
|
paths:
|
|
|
|
- 'Gemfile*'
|
2023-02-16 06:33:50 +00:00
|
|
|
- '.rubocop*.yml'
|
|
|
|
- '.ruby-version'
|
2023-07-11 13:23:57 +00:00
|
|
|
- 'config/brakeman.ignore'
|
2023-01-29 23:39:31 +00:00
|
|
|
- '**/*.rb'
|
|
|
|
- '**/*.rake'
|
|
|
|
- '.github/workflows/lint-ruby.yml'
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
runs-on: ubuntu-latest
|
2023-02-16 06:33:50 +00:00
|
|
|
|
2024-06-13 13:23:32 +00:00
|
|
|
env:
|
|
|
|
BUNDLE_ONLY: development
|
|
|
|
|
2023-01-29 23:39:31 +00:00
|
|
|
steps:
|
2023-02-16 06:33:50 +00:00
|
|
|
- name: Clone repository
|
2023-09-11 08:41:26 +00:00
|
|
|
uses: actions/checkout@v4
|
2023-02-16 06:33:50 +00:00
|
|
|
|
2024-06-13 13:23:32 +00:00
|
|
|
- name: Set up Ruby
|
|
|
|
uses: ruby/setup-ruby@v1
|
|
|
|
with:
|
|
|
|
bundler-cache: true
|
2023-01-29 23:39:31 +00:00
|
|
|
|
2023-02-16 06:33:50 +00:00
|
|
|
- name: Set-up RuboCop Problem Matcher
|
2023-01-29 23:39:31 +00:00
|
|
|
uses: r7kamura/rubocop-problem-matchers-action@v1
|
|
|
|
|
|
|
|
- name: Run rubocop
|
2024-06-13 14:27:17 +00:00
|
|
|
run: bin/rubocop
|
2023-02-18 11:49:09 +00:00
|
|
|
|
2023-07-11 13:23:57 +00:00
|
|
|
- name: Run brakeman
|
|
|
|
if: always() # Run both checks, even if the first failed
|
2024-06-13 15:07:02 +00:00
|
|
|
run: bin/brakeman
|