Run tests with Redmine 6.0.0 #66
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run RuboCop | |
on: | |
- push | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install package dependencies | |
run: > | |
sudo apt-get install --yes --quiet | |
pandoc | |
- name: Setup Gemfile | |
run: | | |
touch .enable_dev | |
sed -i "3isource 'https://rubygems.org'" Gemfile | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.1 | |
bundler-cache: true | |
- name: Setup gems | |
run: | | |
bundle install --jobs 4 --retry 3 | |
- name: Run RuboCop | |
run: | | |
bundle exec rubocop -S | |
- name: Run Slim-Lint | |
run: | | |
bundle exec slim-lint app/views | |
if: always() |