travis -> GH actions

This commit is contained in:
Jens Kraemer
2023-11-03 14:39:52 +08:00
parent c496fac5e2
commit 7f0581aff2
3 changed files with 32 additions and 114 deletions

32
.github/workflows/redmine.yml vendored Normal file
View File

@@ -0,0 +1,32 @@
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 }}