Files
Redmine/.github/workflows/linters.yml
Marius Balteanu 04f546f485 Run tests on Github as secondary CI environment using the following matrix:
* 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
2024-11-11 21:52:05 +00:00

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