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