diff --git a/.github/workflows/moodle-ci.yml b/.github/workflows/moodle-ci.yml index 648e206..2b47cc8 100644 --- a/.github/workflows/moodle-ci.yml +++ b/.github/workflows/moodle-ci.yml @@ -31,15 +31,9 @@ jobs: fail-fast: false matrix: include: - - php: '8.3' - moodle-branch: 'MOODLE_405_STABLE' - database: 'mariadb' - - php: '8.3' - moodle-branch: 'MOODLE_404_STABLE' + - php: '8.1' + moodle-branch: 'MOODLE_402_STABLE' database: 'pgsql' - - php: '8.2' - moodle-branch: 'MOODLE_403_STABLE' - database: 'mariadb' steps: - name: Check out repository code diff --git a/tests/behat/activitycompletion.feature b/tests/behat/activitycompletion.feature index 49b7bf9..5f2f80f 100644 --- a/tests/behat/activitycompletion.feature +++ b/tests/behat/activitycompletion.feature @@ -43,7 +43,7 @@ Feature: Assignment completion And I navigate to "Settings" in current page administration And I click on "Expand all" "link" in the "region-main" "region" And I set the following fields to these values: - | Add requirements | 2 | + | Completion tracking | 2 | | Grade peers in group | 1 | And I press "Save and return to course" And I log out diff --git a/version.php b/version.php index 12e9180..392fec0 100644 --- a/version.php +++ b/version.php @@ -29,7 +29,7 @@ $plugin->component = 'mod_peerwork'; $plugin->maturity = MATURITY_STABLE; $plugin->release = '4.2.0'; -$plugin->supported = [403, 405]; +$plugin->supported = [402]; $plugin->dependencies = [ 'peerworkcalculator_webpa' => 2020052200, ];