Files
redmine/.github/workflows/tests.yml
2020-04-04 16:45:12 +02:00

32 lines
573 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.6
database:
- sqlite3
- postgres
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 }}