Skip to content

Commit

Permalink
CI: Update for Moodle 4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
justusdieckmann committed Oct 9, 2023
1 parent 3b9009a commit 96dfc3c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 10 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/moodle-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ jobs:

strategy:
matrix:
php: ['8.1']
moodle-branch: ['MOODLE_402_STABLE']
php: ['8.2']
moodle-branch: ['MOODLE_403_STABLE']
database: ['pgsql']

steps:
Expand Down Expand Up @@ -108,9 +108,12 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['8.0', '8.1']
moodle-branch: ['MOODLE_401_STABLE', 'MOODLE_402_STABLE']
php: ['8.0', '8.1', '8.2']
moodle-branch: ['MOODLE_401_STABLE', 'MOODLE_402_STABLE', 'MOODLE_403_STABLE']
database: ['mariadb', 'pgsql']
exclude:
- php: '8.2'
moodle-branch: 'MOODLE_401_STABLE'
include:
- php: '7.4'
moodle-branch: 'MOODLE_39_STABLE'
Expand Down
12 changes: 6 additions & 6 deletions renderable.php
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,17 @@ class ratingallocate_choice_status implements renderable {

public $accesstimestop;
public $accesstimestart;
public $ispublished;
public $is_published;
public $publishdate;
public $availablechoices;
public $necessarychoices;
public $ownchoices;
public $available_choices;
public $necessary_choices;
public $own_choices;
public $allocations;
public $strategy;
/** @var bool show_distribution_info specifies if the info regarding the distribution should be displayed. * */
public $showdistributioninfo;
public $show_distribution_info;
/** @var bool show_user_info specifies if the current ratings of the user shoulld be renderer. * */
public $showuserinfo;
public $show_user_info;
public $algorithmstarttime;
public $algorithmstatus;
}

0 comments on commit 96dfc3c

Please sign in to comment.