mirror of
https://github.com/redmine/redmine.git
synced 2026-01-21 15:03:22 +01:00
* ruby: 3.1, 3.2, 3.3 * database mysql 8, postgresql 13 (#30069) git-svn-id: https://svn.redmine.org/redmine/trunk@23254 e93f8b46-1217-0410-a6f0-8f06a7374b81
22 lines
362 B
YAML
22 lines
362 B
YAML
name: Lint
|
|
|
|
on:
|
|
push:
|
|
|
|
jobs:
|
|
lint:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up Ruby
|
|
uses: ruby/setup-ruby@v1
|
|
with:
|
|
ruby-version: 3.2
|
|
bundler-cache: true
|
|
|
|
- name: Lint code for consistent style
|
|
run: bundle exec rubocop --parallel
|