DateParser: Fix "str_replace(): Passing null to parameter #3 ($subject) of type array|string is deprecated" #255
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: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
include: | |
- mediawiki_version: '1.39' | |
smw_version: dev-master | |
php_version: 8.1 | |
database_type: mysql | |
database_image: "mariadb:10" | |
coverage: false | |
experimental: false | |
- mediawiki_version: '1.40' | |
smw_version: dev-master | |
php_version: 8.1 | |
database_type: mysql | |
database_image: "mariadb:11.2" | |
coverage: true | |
experimental: false | |
env: | |
MW_VERSION: ${{ matrix.mediawiki_version }} | |
SMW_VERSION: ${{ matrix.smw_version }} | |
PHP_VERSION: ${{ matrix.php_version }} | |
DB_TYPE: ${{ matrix.database_type }} | |
DB_IMAGE: ${{ matrix.database_image }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Update submodules | |
run: git submodule update --init --remote | |
- name: Run tests | |
run: make ci | |
if: matrix.coverage == false | |
- name: Run tests with coverage | |
run: make ci-coverage | |
if: matrix.coverage == true | |
- name: Upload code coverage | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage/php/coverage.xml | |
if: matrix.coverage == true |