Skip to content

Merge pull request #39 from sanak/ftr/support-6 #36

Merge pull request #39 from sanak/ftr/support-6

Merge pull request #39 from sanak/ftr/support-6 #36

Workflow file for this run

name: Test
env:
PLUGIN_NAME: ${{ github.event.repository.name }}
on:
push:
branches:
- main
- next
pull_request:
branches:
- main
- next
workflow_dispatch:
jobs:
test:
name: redmine:${{ matrix.redmine_version }} ruby:${{ matrix.ruby_version }} db:${{ matrix.db }}
runs-on: ubuntu-24.04
strategy:
fail-fast: false
matrix:
redmine_version: [5.0-stable, 5.1-stable, 6.0-stable, master]
ruby_version: ['3.1', '3.2', '3.3']
db: ['mysql:5.7', 'postgres:10', 'sqlite3']
# System test takes 2~3 times longer, so limit to specific matrix combinations
# See: https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#expanding-or-adding-matrix-configurations
include:
- system_test: true
redmine_version: 6.0-stable
ruby_version: '3.3'
db: 'mysql:5.7'
exclude:
- redmine_version: 5.0-stable
ruby_version: '3.2'
- redmine_version: 5.0-stable
ruby_version: '3.3'
- redmine_version: 5.1-stable
ruby_version: '3.3'
steps:
- name: Setup Redmine
uses: hidakatsuya/action-setup-redmine@v2
with:
repository: redmine/redmine
version: ${{ matrix.redmine_version }}
ruby-version: ${{ matrix.ruby_version }}
database: ${{ matrix.db }}
path: redmine
- name: Checkout Plugin
uses: actions/checkout@v4
with:
path: redmine/plugins/${{ env.PLUGIN_NAME }}
- name: Install Ruby dependencies
working-directory: redmine
run: |
bundle config set --local without 'development'
bundle install --jobs=4 --retry=3
- name: Run Redmine rake tasks
working-directory: redmine
run: |
bundle exec rake generate_secret_token
bundle exec rake db:create db:migrate redmine:plugins:migrate
- name: Zeitwerk check
working-directory: redmine
run: |
if grep -q zeitwerk config/application.rb ; then
bundle exec rake zeitwerk:check
fi
shell: bash
- name: Run plugin tests
working-directory: redmine
run: |
bundle exec rails test plugins/redmine_custom_fields_groups/test/unit
bundle exec rails test plugins/redmine_custom_fields_groups/test/functional
bundle exec rails test plugins/redmine_custom_fields_groups/test/integration
if [ ${{ matrix.system_test }} = "true" ]; then
bundle exec rails test plugins/redmine_custom_fields_groups/test/system
fi
# - name: Run core tests
# env:
# RAILS_ENV: test
# PARALLEL_WORKERS: 1
# working-directory: redmine
# run: bundle exec rails test
# - name: Run core system tests
# if: matrix.system_test == true
# env:
# RAILS_ENV: test
# GOOGLE_CHROME_OPTS_ARGS: "headless,disable-gpu,no-sandbox,disable-dev-shm-usage"
# working-directory: redmine
# run: bundle exec rails test:system
- name: Run uninstall test
working-directory: redmine
run: bundle exec rake redmine:plugins:migrate NAME=${{ env.PLUGIN_NAME }} VERSION=0