Done #288
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
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
test: | |
name: "PHPUnit: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}" | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- mw: 'REL1_35' | |
php: 8.0 | |
- mw: 'REL1_39' | |
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 | |
- name: Cache MediaWiki | |
id: cache-mediawiki | |
uses: actions/cache@v2 | |
with: | |
path: | | |
mediawiki | |
!mediawiki/extensions/ | |
!mediawiki/vendor/ | |
key: mw_${{ matrix.mw }}-php${{ matrix.php }} | |
- name: Cache Composer cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.composer/cache | |
key: composer-php${{ matrix.php }} | |
- name: Install MediaWiki | |
if: steps.cache-mediawiki.outputs.cache-hit != 'true' | |
working-directory: ~ | |
run: curl https://gist.githubusercontent.com/JeroenDeDauw/49a3858653ff4b5be7ec849019ede06c/raw/installMediaWiki.sh | bash -s ${{ matrix.mw }} ExternalContent | |
- uses: actions/checkout@v2 | |
with: | |
path: mediawiki/extensions/ExternalContent | |
- name: Composer allow-plugins | |
run: composer config --no-plugins allow-plugins.composer/installers true | |
- run: composer update | |
- name: Run update.php | |
run: php maintenance/update.php --quick | |
- name: Run PHPUnit | |
run: php tests/phpunit/phpunit.php -c extensions/ExternalContent/ | |
if: matrix.php != 7.4 | |
- name: Run PHPUnit with code coverage | |
run: php tests/phpunit/phpunit.php -c extensions/ExternalContent/ --coverage-clover coverage.xml | |
if: matrix.php == 7.4 | |
- name: Upload code coverage | |
run: bash <(curl -s https://codecov.io/bash) | |
if: matrix.php == 7.4 | |
- name: Run parser tests | |
run: php tests/parser/parserTests.php --file=extensions/ExternalContent/tests/parser/parserTests.txt | |
if: matrix.mw == 'REL1_39' | |
static-analysis: | |
name: "Static Analysis" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: mediawiki/extensions/ExternalContent | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
extensions: mbstring | |
tools: composer, cs2pr | |
- name: Cache MediaWiki | |
id: cache-mediawiki | |
uses: actions/cache@v2 | |
with: | |
path: | | |
mediawiki | |
!mediawiki/extensions/ | |
!mediawiki/vendor/ | |
key: mw_static_analysis | |
- name: Cache Composer cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.composer/cache | |
key: composer_static_analysis | |
- name: Install MediaWiki | |
if: steps.cache-mediawiki.outputs.cache-hit != 'true' | |
working-directory: ~ | |
run: curl https://gist.githubusercontent.com/JeroenDeDauw/49a3858653ff4b5be7ec849019ede06c/raw/installMediaWiki.sh | bash -s REL1_36 ExternalContent | |
- uses: actions/checkout@v2 | |
with: | |
path: mediawiki/extensions/ExternalContent | |
- name: Composer allow-plugins | |
run: composer config --no-plugins allow-plugins.composer/installers true | |
- name: Composer install | |
run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
- name: PHPStan | |
run: php vendor/bin/phpstan analyse --error-format=checkstyle --no-progress | cs2pr | |
- run: php vendor/bin/psalm --shepherd --stats | |
if: true | |
code-style: | |
name: "Code style" | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: mediawiki/extensions/ExternalContent | |
steps: | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.0 | |
extensions: mbstring, intl, php-ast | |
tools: composer | |
- name: Cache MediaWiki | |
id: cache-mediawiki | |
uses: actions/cache@v2 | |
with: | |
path: | | |
mediawiki | |
!mediawiki/extensions/ | |
!mediawiki/vendor/ | |
key: mw_static_analysis | |
- name: Cache Composer cache | |
uses: actions/cache@v2 | |
with: | |
path: ~/.composer/cache | |
key: composer_static_analysis | |
- name: Install MediaWiki | |
if: steps.cache-mediawiki.outputs.cache-hit != 'true' | |
working-directory: ~ | |
run: curl https://gist.githubusercontent.com/JeroenDeDauw/49a3858653ff4b5be7ec849019ede06c/raw/installMediaWiki.sh | bash -s REL1_36 ExternalContent | |
- uses: actions/checkout@v2 | |
with: | |
path: mediawiki/extensions/ExternalContent | |
- name: Composer allow-plugins | |
run: composer config --no-plugins allow-plugins.composer/installers true | |
- name: Composer install | |
run: composer install --no-progress --no-interaction --prefer-dist --optimize-autoloader | |
- run: vendor/bin/phpcs -p -s |