Skip to content

Commit

Permalink
faildump
Browse files Browse the repository at this point in the history
  • Loading branch information
rdebleu committed Jun 11, 2024
1 parent c55b0b8 commit 60af9c4
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,55 +65,55 @@ jobs:
MOODLE_BRANCH: ${{ matrix.moodle-branch }}

- name: phplint
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi phplint

- name: phpmd
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi phpmd

- name: phpdoc
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi phpdoc

- name: codechecker
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi codechecker

- name: validate
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi validate

- name: savepoints
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi savepoints

- name: grunt
if: ${{ matrix.moodle-branch == 'MOODLE_402_STABLE'}}
run: moodle-plugin-ci --ansi grunt

- name: mustache
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi mustache

- name: phpunit
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi phpunit --testdox --coverage-text --coverage-clover

- name: privacy
if: ${{ always() }}
if: ${{ !cancelled() }}
run: vendor/bin/phpunit --colors --no-coverage --testsuite tool_dataprivacy_testsuite,tool_policy_testsuite,core_privacy_testsuite
working-directory: moodle

- name: coveralls
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci coveralls-upload || true
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: firefox
id: behat
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi behat

- name: faildump
Expand All @@ -124,26 +124,26 @@ jobs:
path: ${{ github.workspace }}/moodledata/behat_dump
retention-days: 7
if-no-files-found: ignore

- name: chrome
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi behat --profile chrome

- name: firefox classic
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi behat --suite="classic"

- name: chrome classic
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi behat --suite="classic" --profile chrome

- name: admin bookmarks
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi behat --auto-rerun=0 --profile chrome blocks/admin_bookmarks
working-directory: moodle

- name: admin xmldb
if: ${{ always() }}
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi behat --auto-rerun=0 --profile chrome admin/tool/xmldb
working-directory: moodle

0 comments on commit 60af9c4

Please sign in to comment.