Skip to content

Commit

Permalink
Uses organisation variables for matrix config
Browse files Browse the repository at this point in the history
  • Loading branch information
dkastl authored Oct 31, 2023
1 parent 90682d9 commit 30ce4db
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-postgis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ name: Test with PostGIS

env:
PLUGIN_NAME: ${{ github.event.repository.name }}
REDMINE_VERSIONS: ${{ fromJson(vars.PLUGIN_TEST_MATRIX_REDMINE_VERSION) }}
RUBY_VERSIONS: ${{ fromJson(vars.PLUGIN_TEST_MATRIX_RUBY_VERSION) }}

on:
push:
Expand All @@ -24,8 +26,8 @@ jobs:
strategy:
fail-fast: false
matrix:
redmine_version: [5.0-stable, master]
ruby_version: ['3.0', '3.1']
redmine_version: ${{ env.REDMINE_VERSIONS }}
ruby_version: ${{ env.RUBY_VERSIONS }}
db_version: [12-3.0, 15-3.3]

services:
Expand Down

0 comments on commit 30ce4db

Please sign in to comment.