Skip to content

Commit

Permalink
Update github action - add redmine 5.1 for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandermeindl committed Nov 5, 2023
1 parent f2945fe commit 961e7eb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.1
ruby-version: 3.2
bundler-cache: true

- name: Setup gems
Expand Down
13 changes: 8 additions & 5 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ jobs:

strategy:
matrix:
ruby: ['2.7', '3.0', '3.1']
redmine: ['5.0-stable', 'master']
ruby: ['2.7', '3.0', '3.1', '3.2']
redmine: ['5.0-stable', '5.1-stable', 'master']
db: ['postgres', 'mysql']
exclude:
- ruby: '3.2'
redmine: 5.0-stable
fail-fast: false

services:
Expand Down Expand Up @@ -50,20 +53,20 @@ jobs:
if: matrix.db == 'mysql'

- name: Checkout Redmine
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: redmine/redmine
ref: ${{ matrix.redmine }}
path: redmine

- name: Checkout additionals
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: AlphaNodes/additionals
path: redmine/plugins/additionals

- name: Checkout redmine_issue_view_columns
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: redmine/plugins/redmine_issue_view_columns

Expand Down

0 comments on commit 961e7eb

Please sign in to comment.