Skip to content

Fix CI

Fix CI #430

Workflow file for this run

name: validation
on: push
jobs:
test_ruby:
runs-on: ubuntu-latest
steps:
- name: Checkout Redmine
uses: actions/checkout@v4
with:
repository: redmine/redmine
path: redmine
- name: Checkout Tracky
uses: actions/checkout@v4
with:
path: plugins/redmine_tracky
- name: Cache gems
uses: actions/cache@v3
with:
path: vendor/bundle
key: gems-${{ hashFiles('Gemfile.lock') }}
- name: Cache Node modules
uses: actions/cache@v3
with:
path: node_modules
key: npm-${{ hashFiles('plugins/redmine_tracky/assets.src/package-lock.json') }}
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.1.2'
- name: Start MySQL
run: sudo service mysql start
- name: Setup Tracky
run: cd plugins/redmine_tracky && bin/setup
env:
GITHUB_ACTIONS: true
- name: Run linters
run: cd plugins/redmine_tracky && rake lint
- name: Run tests
run: cd plugins/redmine_tracky && rake test