From 61dbfa5403f79bae80692328257338c484890898 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Pi=C4=8Dman?= Date: Thu, 9 Jan 2020 10:31:21 +0100 Subject: [PATCH] CI using GitHub Actions --- .github/workflows/redmine.yml | 37 +++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .github/workflows/redmine.yml diff --git a/.github/workflows/redmine.yml b/.github/workflows/redmine.yml new file mode 100644 index 00000000..10ad870b --- /dev/null +++ b/.github/workflows/redmine.yml @@ -0,0 +1,37 @@ +name: Redmine +on: + push: + pull_request: + +jobs: + one: + runs-on: ubuntu-latest + strategy: + matrix: + ruby: + - v2.6.x + redmine: + - 4.1-stable + + steps: + - uses: actions/checkout@v1 + + - name: Setup System + run: | + sudo apt-get update + sudo apt-get install libsqlite3-dev + + - name: Set up Ruby + uses: actions/setup-ruby@v1 + with: + ruby-version: ${{ matrix.ruby }} + + - name: Update gems + run: | + gem update --system + + - name: Redmine plugin test + uses: two-pack/redmine-plugin-test-action@v1 + with: + plugin-name: redmine_dmsf + redmine_version: ${{ matrix.redmine }}