Tag v4.1.1 #270
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
# While the GitHub mirror is read-only, we keep this CI config | |
# for convenience to forks and pull requests. | |
# | |
# To submit a patch you can: | |
# | |
# * Create a Wikimedia Developer account and submit it to Wikimedia Gerrit | |
# <https://www.mediawiki.org/wiki/Developer_account>, | |
# | |
# * Or, submit the output of `git diff origin/HEAD` | |
# via <https://gerrit-patch-uploader.toolforge.org/>. | |
# | |
# * Or, create a pull request via GitHub and wait for someone | |
# else to do one of the above. | |
# | |
name: Test | |
on: | |
- push | |
- pull_request | |
jobs: | |
php: | |
name: PHP ${{ matrix.php }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# Includes php7.4 - 8.2 and composer 2 | |
# https://github.com/actions/runner-images/blob/ubuntu20/20221212.2/images/linux/Ubuntu2004-Readme.md#php | |
- php: '7.4' | |
os: ubuntu-20.04 | |
- php: '8.0' | |
os: ubuntu-20.04 | |
- php: '8.1' | |
os: ubuntu-20.04 | |
- php: '8.2' | |
os: ubuntu-20.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use PHP ${{ matrix.php }} | |
run: sudo update-alternatives --set php /usr/bin/php${{ matrix.php }} | |
- name: Validate composer.json and composer.lock | |
run: composer validate | |
- name: Install dependencies | |
run: composer install --prefer-dist --no-progress --no-suggest | |
- name: Test | |
run: composer test |