Skip to content

Commit

Permalink
change syntax in matrix to avoid arrays
Browse files Browse the repository at this point in the history
  • Loading branch information
srobotta committed Apr 27, 2023
1 parent cd53947 commit 82f4b58
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions .github/workflows/moodle-plugin-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,30 @@ jobs:
fail-fast: false
matrix:
include:
- php: ['8.0', '8.1']
- php: '8.0'
moodle-branch: 'MOODLE_402_STABLE'
database: [pgsql, mariadb]
- php: ['7.4', '8.0']
database: pgsql
- php: '8.1'
moodle-branch: 'MOODLE_402_STABLE'
database: pgsql
- php: '8.0'
moodle-branch: 'MOODLE_402_STABLE'
database: mariadb
- php: '8.1'
moodle-branch: 'MOODLE_402_STABLE'
database: mariadb
- php: '8.0'
moodle-branch: 'MOODLE_401_STABLE'
database: pgsql
- php: '7.4'
moodle-branch: 'MOODLE_401_STABLE'
database: pgsql
- php: '8.0'
moodle-branch: 'MOODLE_401_STABLE'
database: mariadb
- php: '7.4'
moodle-branch: 'MOODLE_401_STABLE'
database: [pgsql, mariadb]
database: mariadb

steps:
- name: Check out repository code
Expand Down

0 comments on commit 82f4b58

Please sign in to comment.