Skip to content

Commit

Permalink
Fixed syntax in github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Vidalia committed May 21, 2024
1 parent 8ad2b49 commit 343d918
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,18 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2']
moodle-branch: ['MOODLE_401_STABLE', 'MOODLE_402_STABLE' 'MOODLE_403_STABLE', 'MOODLE_404_STABLE']
php: [ '8.0', '8.1', '8.2', '8.3' ]
moodle-branch: ['MOODLE_401_STABLE', 'MOODLE_402_STABLE', 'MOODLE_403_STABLE', 'MOODLE_404_STABLE']
database: [pgsql, mariadb]
exclude:
- php: '8.0'
moodle-branch: MOODLE_404_STABLE
- php: '8.3'
moodle-branch: MOODLE_401_STABLE
- php: '8.3'
moodle-branch: MOODLE_402_STABLE
- php: '8.3'
moodle-branch: MOODLE_403_STABLE

steps:
- name: Check out repository code
Expand Down

0 comments on commit 343d918

Please sign in to comment.