Skip to content

Style and power transforms #25

Style and power transforms

Style and power transforms #25

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ "*" ]
jobs:
test:
name: "PHPUnit: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}"
strategy:
matrix:
include:
- mw: 'REL1_35'
php: 7.4
- mw: 'REL1_38'
php: 8.0
- mw: 'REL1_39'
php: 8.0
- mw: 'master'
php: 8.1
runs-on: ubuntu-latest
defaults:
run:
working-directory: mediawiki
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: mbstring, intl
tools: composer:2.1.14
- name: Cache MediaWiki
id: cache-mediawiki
uses: actions/cache@v3
with:
path: |
mediawiki
!mediawiki/extensions/
!mediawiki/vendor/
key: mw_${{ matrix.mw }}-php${{ matrix.php }}
- name: Cache Composer cache
uses: actions/cache@v3
with:
path: ~/.composer/cache
key: composer-php${{ matrix.php }}
- uses: actions/checkout@v3
with:
path: EarlyCopy
- name: Install MediaWiki
if: steps.cache-mediawiki.outputs.cache-hit != 'true'
working-directory: ~
run: bash EarlyCopy/.github/workflows/installWiki.sh ${{ matrix.mw }} FontAwesome
- uses: actions/checkout@v3
with:
path: mediawiki/extensions/FontAwesome
- name: Composer update
run: composer update
- name: Run PHPUnit
run: php tests/phpunit/phpunit.php -c extensions/FontAwesome/