Skip to content

Commit

Permalink
Update test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
mackensen committed Apr 24, 2024
1 parent 887286d commit 7f9b52b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 10 deletions.
11 changes: 4 additions & 7 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,15 @@ jobs:
fail-fast: false
matrix:
php: ['8.0', '8.1', '8.2']
moodle-branch: ['MOODLE_400_STABLE', 'MOODLE_401_STABLE', 'MOODLE_402_STABLE', 'MOODLE_403_STABLE', 'main']
moodle-branch: ['MOODLE_400_STABLE', 'MOODLE_401_STABLE', 'MOODLE_402_STABLE', 'MOODLE_403_STABLE', 'MOODLE_404_STABLE', 'main']
database: [pgsql, mariadb]
include:
- {moodle-branch: 'MOODLE_400_STABLE', php: '7.4', database: 'pgsql'}
- {moodle-branch: 'MOODLE_401_STABLE', php: '7.4', database: 'mariadb'}
- {moodle-branch: 'MOODLE_401_STABLE', php: '7.4', database: 'pgsql'}
exclude:
- {moodle-branch: 'MOODLE_400_STABLE', php: '8.1', database: 'pgsql'}
- {moodle-branch: 'MOODLE_400_STABLE', php: '8.1', database: 'mariadb'}
- {moodle-branch: 'MOODLE_400_STABLE', php: '8.2', database: 'pgsql'}
- {moodle-branch: 'MOODLE_400_STABLE', php: '8.2', database: 'mariadb'}
- {moodle-branch: 'MOODLE_401_STABLE', php: '8.2', database: 'pgsql'}
- {moodle-branch: 'MOODLE_401_STABLE', php: '8.2', database: 'mariadb'}
- {moodle-branch: 'MOODLE_404_STABLE', php: '8.0', database: 'pgsql'}
- {moodle-branch: 'MOODLE_404_STABLE', php: '8.0', database: 'mariadb'}
- {moodle-branch: 'main', php: '8.0', database: 'pgsql'}
- {moodle-branch: 'main', php: '8.0', database: 'mariadb'}

Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

- Change default branch to "main"
- Update CI tool to version 3
- Drop support for Moodle 3.6-3.8
- Drop support for Moodle 3.6-4.0
- Migrate CI builds to Github Actions
- Resolve standards issues, mostly MDLSITE-6594

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This plugin makes Markdown tables available as a dataformat export option. See t

Requirements
------------
- Moodle 3.9 (build 2020061500 or later)
- Moodle 4.1 (build 2022112800 or later)

Installation
------------
Expand Down
2 changes: 1 addition & 1 deletion version.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,6 @@

$plugin->component = 'dataformat_markdown';
$plugin->version = 2020061500;
$plugin->requires = 2020061500; // Requires this Moodle version.
$plugin->requires = 2022112800; // Requires this Moodle version.
$plugin->maturity = MATURITY_STABLE;
$plugin->release = 'v3.6.0';

0 comments on commit 7f9b52b

Please sign in to comment.