Dependency injection and raw error refactor #66
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: Continuous Integration | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - specialPageList # Add your development branch | |
| pull_request: | |
| env: | |
| EXTNAME: CrawlerProtection | |
| MW_INSTALL_PATH: ${{ github.workspace }} | |
| jobs: | |
| style: | |
| name: Code Style | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| php: [ '8.2', '8.3', '8.4' ] | |
| mediawiki: [ REL1_43 ] | |
| include: | |
| - os: ubuntu-latest | |
| php: '7.4' | |
| mediawiki: REL1_39 | |
| - os: ubuntu-latest | |
| php: '8.1' | |
| mediawiki: REL1_39 | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring, intl | |
| coverage: none | |
| tools: composer | |
| - name: Setup MediaWiki | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: wikimedia/mediawiki | |
| ref: ${{ matrix.mediawiki }} | |
| - name: Setup Extension | |
| uses: actions/checkout@v4 | |
| with: | |
| path: extensions/${{ env.EXTNAME }} | |
| - name: Setup Composer | |
| # Don't block insecure packages because MediaWiki might be using outdated dependencies, which shouldn't block the extension's pipelines from running | |
| run: | | |
| echo '{"extra":{"merge-plugin":{"include":["extensions/*/composer.json","skins/*/composer.json"]}},"config":{"audit":{"abandoned":"report","block-insecure":false}}}' > composer.local.json | |
| composer update | |
| composer update | |
| - name: Lint | |
| run: ./vendor/bin/parallel-lint --exclude node_modules --exclude vendor extensions/${{ env.EXTNAME }} | |
| - name: PHP Code Sniffer | |
| run: cd extensions/${{ env.EXTNAME }} && ../../vendor/bin/phpcs -sp | |
| security: | |
| name: Static Analysis | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| # 1.43 phan is broken on php 8.4 | |
| php: [ '8.2', '8.3' ] | |
| mediawiki: [ REL1_43 ] | |
| include: | |
| - os: ubuntu-latest | |
| php: '7.4' | |
| mediawiki: REL1_39 | |
| - os: ubuntu-latest | |
| php: '8.1' | |
| mediawiki: REL1_39 | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring, intl, ast | |
| coverage: none | |
| tools: composer | |
| - name: Setup MediaWiki | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: wikimedia/mediawiki | |
| ref: ${{ matrix.mediawiki }} | |
| - name: Setup Extension | |
| uses: actions/checkout@v4 | |
| with: | |
| path: extensions/${{ env.EXTNAME }} | |
| - name: Setup Composer | |
| # Don't block insecure packages because MediaWiki might be using outdated dependencies, which shouldn't block the extension's pipelines from running | |
| run: | | |
| echo '{"extra":{"merge-plugin":{"include":["extensions/*/composer.json","skins/*/composer.json"]}},"config":{"audit":{"abandoned":"report","block-insecure":false}}}' > composer.local.json | |
| composer update | |
| composer update | |
| - name: Phan | |
| run: ./vendor/bin/phan -d extensions/${{ env.EXTNAME }} --minimum-target-php-version=7.4 --long-progress-bar | |
| phpunit: | |
| name: Unit Tests | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ ubuntu-latest ] | |
| php: [ '8.2', '8.3', '8.4' ] | |
| mediawiki: [ REL1_43 ] | |
| include: | |
| - os: ubuntu-latest | |
| php: '7.4' | |
| mediawiki: REL1_39 | |
| - os: ubuntu-latest | |
| php: '8.2' | |
| mediawiki: REL1_39 | |
| steps: | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| extensions: mbstring, intl, ast | |
| coverage: none | |
| tools: composer | |
| - name: Setup MediaWiki | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: wikimedia/mediawiki | |
| ref: ${{ matrix.mediawiki }} | |
| - name: Setup Extension | |
| uses: actions/checkout@v4 | |
| with: | |
| path: extensions/${{ env.EXTNAME }} | |
| - name: Setup Composer | |
| # Don't block insecure packages because MediaWiki might be using outdated dependencies, which shouldn't block the extension's pipelines from running | |
| run: | | |
| echo '{"extra":{"merge-plugin":{"include":["extensions/*/composer.json","skins/*/composer.json"]}},"config":{"audit":{"abandoned":"report","block-insecure":false}}}' > composer.local.json | |
| composer update | |
| composer update | |
| - name: Install MediaWiki | |
| run: php maintenance/install.php --dbtype=sqlite --with-extensions --pass=UnitTestingAdminPassword519 UnitTesting WikiAdmin | |
| - name: Phpunit | |
| run: ./vendor/bin/phpunit -- extensions/${{ env.EXTNAME }}/tests/phpunit |