Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates the matrix test cases #35

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 36 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,42 @@ jobs:
strategy:
fail-fast: false
matrix:
php: ['7.3','7.4']
moodle-branch: ['MOODLE_39_STABLE', 'MOODLE_310_STABLE', 'MOODLE_311_STABLE']
php: ['7.1', '7.2', '7.3', '7.4']
moodle-branch: ['MOODLE_35_STABLE', 'MOODLE_36_STABLE', 'MOODLE_37_STABLE', 'MOODLE_38_STABLE', 'MOODLE_39_STABLE', 'MOODLE_310_STABLE', 'MOODLE_311_STABLE']
database: [pgsql]

exclude:
# Exclude Moodle+PHP incompatible versions
# See: https://docs.moodle.org/dev/Moodle_and_PHP
- moodle-branch: 'MOODLE_36_STABLE'
php: '7.1'
- moodle-branch: 'MOODLE_37_STABLE'
php: '7.1'
- moodle-branch: 'MOODLE_38_STABLE'
php: '7.1'
- moodle-branch: 'MOODLE_39_STABLE'
php: '7.1'
- moodle-branch: 'MOODLE_310_STABLE'
php: '7.1'
- moodle-branch: 'MOODLE_311_STABLE'
php: '7.1'
- moodle-branch: 'MOODLE_36_STABLE'
php: '7.2'
- moodle-branch: 'MOODLE_37_STABLE'
php: '7.2'
- moodle-branch: 'MOODLE_311_STABLE'
php: '7.2'
- moodle-branch: 'MOODLE_35_STABLE'
php: '7.3'
- moodle-branch: 'MOODLE_36_STABLE'
php: '7.3'
- moodle-branch: 'MOODLE_37_STABLE'
php: '7.3'
- moodle-branch: 'MOODLE_35_STABLE'
php: '7.4'
- moodle-branch: 'MOODLE_36_STABLE'
php: '7.4'
- moodle-branch: 'MOODLE_37_STABLE'
php: '7.4'
steps:
- name: Check out repository code
uses: actions/checkout@v2
Expand All @@ -56,7 +88,7 @@ jobs:
- name: Add filter & commons qtype
run: |
moodle-plugin-ci add-plugin wiris/moodle-filter_wiris
moodle-plugin-ci add-plugin --branch ${GITHUB_REF##*/} wiris/moodle-qtype_wq
moodle-plugin-ci add-plugin wiris/moodle-qtype_wq

- name: Install moodle-plugin-ci
run: |
Expand Down