Fix for b50a5a0ae921 for Special:Drilldown #20
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
name: PHPUnit / PHPCS / Phan | |
on: | |
pull_request: | |
branches: '**' | |
push: | |
branches: [ master, MW_1_37, REL1_39 ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
php_version: ['8.0'] | |
mw: ['REL1_39'] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php_version }} | |
# We don't run any coverage, so we should set this parameter to none | |
# as this will disable xdebug which slows all processes significantly | |
coverage: none | |
extensions: ast | |
- uses: actions/checkout@v3 | |
- name: Checkout Mediawiki | |
uses: actions/checkout@v3 | |
with: | |
repository: wikimedia/mediawiki | |
path: mediawiki | |
ref: ${{ matrix.mw }} | |
- name: Checkout Cargo extension | |
uses: actions/checkout@v2 | |
with: | |
path: mediawiki/extensions/Cargo | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v3 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-v3-${{ hashFiles('**/composer.lock') }} | |
- name: Install composer dependencies | |
if: steps.composer-cache.outputs.cache-hit != 'true' | |
working-directory: ./mediawiki/extensions/Cargo | |
run: composer install --prefer-dist --no-progress | |
- name: Run PHPUnit tests | |
working-directory: ./mediawiki/extensions/Cargo | |
run: composer test |