Skip to content

Commit

Permalink
Clean up for Moodle 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Daniel Thies committed Nov 13, 2022
1 parent 49a8e11 commit 543f62b
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 13 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/moodle-ci.yml
Expand Up @@ -29,21 +29,35 @@ jobs:
matrix:
include:
- php: '8.0'
ini-values: max_input_vars=6000
moodle-branch: 'master'
database: 'pgsql'
- php: '7.4'
- php: '8.0'
moodle-branch: 'master'
database: 'mariadb'
- php: '7.4'
- php: '8.0'
moodle-branch: 'MOODLE_401_STABLE'
database: 'pgsql'
- php: '8.0'
moodle-branch: 'MOODLE_400_STABLE'
database: 'mariadb'
- php: '8.0'
moodle-branch: 'MOODLE_311_STABLE'
database: 'pgsql'
- php: '7.4'
moodle-branch: 'MOODLE_310_STABLE'
database: 'pgsql'
- php: '7.3'
- php: '7.4'
moodle-branch: 'MOODLE_39_STABLE'
database: 'pgsql'
- php: '7.3'
moodle-branch: 'MOODLE_38_STABLE'
database: 'pgsql'
- php: '7.2'
moodle-branch: 'MOODLE_37_STABLE'
database: 'pgsql'
- php: '7.0'
moodle-branch: 'MOODLE_35_STABLE'
database: 'mariadb'

steps:
- name: Check out repository code
Expand Down Expand Up @@ -105,6 +119,7 @@ jobs:
run: moodle-plugin-ci mustache

- name: Grunt
continue-on-error: true # This step will show errors but will not fail
if: ${{ always() }}
run: moodle-plugin-ci grunt

Expand Down
2 changes: 0 additions & 2 deletions classes/privacy/provider.php
Expand Up @@ -24,8 +24,6 @@

namespace atto_cloze\privacy;

defined('MOODLE_INTERNAL') || die();

/**
* Privacy Subsystem for atto_cloze implementing null_provider.
*
Expand Down
2 changes: 0 additions & 2 deletions lib.php
Expand Up @@ -22,8 +22,6 @@
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
*/

defined('MOODLE_INTERNAL') || die();

/**
* Get the list of strings for this plugin.
*/
Expand Down
4 changes: 2 additions & 2 deletions version.php
Expand Up @@ -24,8 +24,8 @@

defined('MOODLE_INTERNAL') || die();

$plugin->version = 2017072803; // The current plugin version (Date: YYYYMMDDXX).
$plugin->version = 2017072804; // The current plugin version (Date: YYYYMMDDXX).
$plugin->requires = 2014051200; // Requires this Moodle version.
$plugin->component = 'atto_cloze'; // Full name of the plugin (used for diagnostics).
$plugin->maturity = MATURITY_BETA;
$plugin->maturity = MATURITY_STABLE;
$plugin->release = '1.1.1';

0 comments on commit 543f62b

Please sign in to comment.