Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rdebleu committed Jan 15, 2024
1 parent 7ceba9a commit be7125c
Showing 1 changed file with 21 additions and 16 deletions.
37 changes: 21 additions & 16 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,29 +112,34 @@ jobs:
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi phpunit --coverage-text --coverage-clover

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

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

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

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

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

- name: other
if: ${{ matrix.moodle-branch == 'main'}}
run: vendor/bin/phpunit --colors --no-coverage --testsuite core_availability_testsuite
working-directory: moodle

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

- name: chrome
if: ${{ !cancelled() }}
run: moodle-plugin-ci --ansi behat --profile chrome --tags='@core_availability' availability/condition/language

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

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

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

0 comments on commit be7125c

Please sign in to comment.