mirror of
https://github.com/rickbarrette/stopwatch.git
synced 2026-04-02 17:51:59 -04:00
33 lines
572 B
YAML
33 lines
572 B
YAML
name: Test with Redmine
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
pull_request:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
redmine:
|
|
- '5.0'
|
|
- '5.1'
|
|
ruby:
|
|
- '3.0'
|
|
- '3.1'
|
|
database:
|
|
- postgresql
|
|
- mysql
|
|
steps:
|
|
- uses: eXolnet/action-redmine-plugin@v1
|
|
with:
|
|
plugin_name: stopwatch
|
|
redmine_version: ${{ matrix.redmine }}
|
|
ruby_version: ${{ matrix.ruby }}
|
|
database: ${{ matrix.database }}
|
|
|