File tree 1 file changed +14
-4
lines changed
1 file changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ jobs:
37
37
- php : ' 8.2'
38
38
moodle-branch : ' main'
39
39
database : ' pgsql'
40
+ - php : ' 8.1'
41
+ moodle-branch : ' MOODLE_404_STABLE'
42
+ database : ' mariadb'
40
43
- php : ' 8.1'
41
44
moodle-branch : ' MOODLE_403_STABLE'
42
45
database : ' mariadb'
43
- - php : ' 8.0'
44
- moodle-branch : ' MOODLE_402_STABLE'
45
- database : ' pgsql'
46
46
- php : ' 8.0'
47
47
moodle-branch : ' MOODLE_401_STABLE'
48
48
database : ' mariadb'
@@ -105,7 +105,7 @@ jobs:
105
105
run : moodle-plugin-ci savepoints
106
106
107
107
- name : Mustache Lint
108
- if : ${{ false }}
108
+ if : ${{ !cancelled() }}
109
109
run : moodle-plugin-ci mustache
110
110
111
111
- name : Grunt
@@ -117,9 +117,19 @@ jobs:
117
117
run : moodle-plugin-ci phpunit --fail-on-warning
118
118
119
119
- name : Behat features
120
+ id : behat
120
121
if : ${{ !cancelled() }}
121
122
run : moodle-plugin-ci behat --profile chrome
122
123
124
+ - name : Upload Behat Faildump
125
+ if : ${{ failure() && steps.behat.outcome == 'failure' }}
126
+ uses : actions/upload-artifact@v4
127
+ with :
128
+ name : Behat Faildump (${{ join(matrix.*, ', ') }})
129
+ path : ${{ github.workspace }}/moodledata/behat_dump
130
+ retention-days : 7
131
+ if-no-files-found : ignore
132
+
123
133
- name : Mark cancelled jobs as failed.
124
134
if : ${{ cancelled() }}
125
135
run : exit 1
You can’t perform that action at this time.
0 commit comments