Files
redmine/.github/workflows/tests.yml
2020-03-25 20:02:59 +01:00

30 lines
531 B
YAML

name: Run Tests
on:
push:
pull_request:
schedule:
- cron: '0 5 * * *'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
redmine:
- v4.0
- v4.1
- trunk
ruby:
- v2.4
- v2.5
- v2.6
steps:
- name: Redmine plugin test
uses: two-pack/redmine-plugin-test-action@v2
with:
plugin_name: redmine_messenger
redmine_version: ${{ matrix.redmine }}
ruby_version: ${{ matrix.ruby }}