mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-12-01 01:16:38 +00:00
b5cb971d51
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
74 lines
1.7 KiB
YAML
74 lines
1.7 KiB
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
branches: [ main, develop, feature/* ]
|
|
pull_request:
|
|
branches: [ "*" ]
|
|
|
|
jobs:
|
|
test:
|
|
name: "PHPUnit: MW ${{ matrix.mw }}, PHP ${{ matrix.php }}"
|
|
continue-on-error: ${{ matrix.experimental }}
|
|
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- mw: 'REL1_39'
|
|
php: 8.1
|
|
experimental: false
|
|
- mw: 'REL1_40'
|
|
php: 8.1
|
|
experimental: true
|
|
- mw: 'master'
|
|
php: 8.1
|
|
experimental: true
|
|
|
|
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@v3
|
|
with:
|
|
path: |
|
|
mediawiki
|
|
!mediawiki/extensions/
|
|
!mediawiki/vendor/
|
|
key: mw_${{ matrix.mw }}-php${{ matrix.php }}-v20
|
|
|
|
- name: Cache Composer cache
|
|
uses: actions/cache@v3
|
|
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 }}
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
path: mediawiki/skins/Citizen
|
|
|
|
- name: Composer update
|
|
run: composer update
|
|
|
|
- name: Run PHPUnit
|
|
run: composer phpunit:entrypoint -- --group Citizen |