-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 19818 set grademax during grade_item_update * 19818 removed debugging info * WIP upgrade db to include maxgrade * 19818 fixed migration * 19818 removed migration and added to changelog * updated changelog and version * fixed typos * 20031 make new window mode default (#6) * 20031 make new-window-mode the default for new tasks * Added function to display information box * added travis config file * try new push of travis * 20129 fixed a bug where duedate and isGraded were not copied during duplication and backup (#7) * 20213 changing a tasks problem should reset grades (#8) * 20213 reset grades if problem is changed * 20213 removed logs * 20213 added note to tooltip that changing a problem lets to a grade reset * updated codestyle * 19487 implementing multi upload with drag and drop (#4) * 19487 WIP implementing multi upload with dnd * 19487 fixed namespace error for exceptions * 19487 improved upload validation method * 19487 fixed a bug, where admin choices for gradepool where ignored when importing tasks via d&d * 19487 added german translation for new string * 19487 added php docs * 19487 removed logs * updated codestyle
- Loading branch information
Showing
10 changed files
with
472 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
language: php | ||
|
||
addons: | ||
postgresql: "9.6" | ||
|
||
services: | ||
- mysql | ||
- postgresql | ||
- docker | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache | ||
- $HOME/.npm | ||
|
||
php: | ||
- 7.2 | ||
- 7.3 | ||
- 7.4 | ||
|
||
env: | ||
global: | ||
- MOODLE_BRANCH=MOODLE_39_STABLE | ||
matrix: | ||
- DB=pgsql | ||
- DB=mysqli | ||
|
||
before_install: | ||
- phpenv config-rm xdebug.ini | ||
- cd ../.. | ||
- composer create-project -n --no-dev --prefer-dist moodlehq/moodle-plugin-ci ci ^3 | ||
- export PATH="$(cd ci/bin; pwd):$(cd ci/vendor/bin; pwd):$PATH" | ||
|
||
install: | ||
- moodle-plugin-ci install | ||
|
||
script: | ||
- moodle-plugin-ci phplint | ||
- moodle-plugin-ci phpcpd | ||
- moodle-plugin-ci phpmd | ||
- moodle-plugin-ci codechecker | ||
- moodle-plugin-ci validate | ||
- moodle-plugin-ci savepoints | ||
- moodle-plugin-ci mustache | ||
- moodle-plugin-ci grunt | ||
- moodle-plugin-ci phpdoc | ||
- moodle-plugin-ci phpunit | ||
- moodle-plugin-ci behat | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.