Styles, Power Transforms, and other cool tricks #87
Workflow file for this run
This file contains hidden or 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: CI | |
| on: | |
| push: | |
| branches: [ master ] | |
| pull_request: | |
| branches: [ "*" ] | |
| jobs: | |
| test: | |
| name: "PHPUnit: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}" | |
| continue-on-error: ${{ matrix.experimental }} | |
| strategy: | |
| matrix: | |
| include: | |
| - mw: 'REL1_43' | |
| php: 8.3 | |
| experimental: false | |
| - mw: 'REL1_44' | |
| php: 8.3 | |
| experimental: false | |
| 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 | |
| - name: Cache MediaWiki | |
| id: cache-mediawiki | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| mediawiki | |
| !mediawiki/extensions/ | |
| !mediawiki/vendor/ | |
| key: mw_${{ matrix.mw }}-php${{ matrix.php }} | |
| - name: Cache Composer cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache | |
| key: composer-php${{ matrix.php }} | |
| - uses: actions/checkout@v4 | |
| 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@v4 | |
| with: | |
| path: mediawiki/extensions/FontAwesome | |
| - name: Composer update | |
| run: composer update | |
| - name: Run PHPUnit | |
| run: php tests/phpunit/phpunit.php -c extensions/FontAwesome/ | |
| phpcs: | |
| name: "Code style: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}" | |
| strategy: | |
| matrix: | |
| include: | |
| - mw: 'REL1_43' | |
| php: '8.3' | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: mediawiki/extensions/FontAwesome | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring, intl | |
| tools: composer | |
| - name: Cache MediaWiki | |
| id: cache-mediawiki | |
| uses: actions/cache@v4 | |
| with: | |
| path: | | |
| mediawiki | |
| !mediawiki/extensions/ | |
| !mediawiki/vendor/ | |
| key: mw_static_analysis | |
| - name: Cache Composer cache | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.composer/cache | |
| key: mw_${{ matrix.mw }}-php${{ matrix.php }} | |
| - uses: actions/checkout@v4 | |
| 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@v4 | |
| with: | |
| path: mediawiki/extensions/FontAwesome | |
| - name: Composer install | |
| run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
| - run: vendor/bin/phpcs -p -s |