Skip to content

Latest commit

 

History

History
65 lines (46 loc) · 1.72 KB

README.md

File metadata and controls

65 lines (46 loc) · 1.72 KB

Redmine Plugin Action

Software License Build Status

GitHub action to test a Redmine plugin using various versions of Redmine.

Usage

name: Redmin plugin

on: [ push ]

jobs:
  
  test:
    name: Test Redmine Plugin
    runs-on: ubuntu-latest
    
    steps:
      - uses: eXolnet/action-redmine-plugin@v1
        with:
          # Automatically checkout the plugin.
          # If false, the plugin must be manually checkout.
          #
          # Default: true
          checkout: false

          # Folder where the plugin will be installed.
          #
          # Default: null
          plugin_name: redmine_plugin
          
          # Redmine version to use.
          #
          # Default: null
          redmine_version: 5.0
          
          # Ruby version to use.
          #
          # Default: null
          ruby_version: 2.4
          
          # Database driver to use.
          #
          # Default: sqlite
          database: mysql

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Credits

License

Copyright © eXolnet. All rights reserved.

This code is licensed under the MIT license. Please see the license file for more information.