Install PHP from PPA #452
Workflow file for this run
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 8.3 and composer 2 | |
# https://github.com/actions/runner-images/blob/releases/ubuntu20/20241023/images/ubuntu/Ubuntu2004-Readme.md#php-tools | |
- 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 | |
- php: '8.3' | |
os: ubuntu-20.04 | |
- php: '8.4' | |
os: ubuntu-20.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Use PHP ${{ matrix.php }} | |
run: | | |
sudo apt-add-repository ppa:ondrej/php -y | |
sudo apt-get update | |
sudo apt-get install -y php${{ matrix.php }} php${{ matrix.php }}-apcu | |
php --version | |
php -i | |
- 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 |