Logger: Handle missing queue times #77
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
# SPDX-FileCopyrightText: Copyright 2021 M2mobi B.V., Amsterdam, The Netherlands | |
# SPDX-FileCopyrightText: Copyright 2022 Move Agency Group B.V., Zwolle, The Netherlands | |
# SPDX-License-Identifier: CC0-1.0 | |
name: PHP Tests | |
on: [push, pull_request] | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental }} | |
name: "PHP-${{ matrix.php-versions }}: PHPUnit" | |
strategy: | |
matrix: | |
php-versions: [ '8.1' ] | |
experimental: [false] | |
include: | |
- php-versions: 8.2 | |
experimental: true | |
- php-versions: 8.3 | |
experimental: true | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-versions }} | |
tools: phpunit:9.5.x | |
- name: Setup problem matchers for PHP | |
run: echo "::add-matcher::${{ runner.tool_cache }}/php.json" | |
- name: Install dependencies | |
run: composer update | |
- name: Run PHPunit | |
run: phpunit --configuration tests/phpunit.xml --coverage-clover=coverage.xml | |
- name: Collect code coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: ./coverage.xml | |
phpcs: | |
runs-on: ubuntu-latest | |
continue-on-error: false | |
name: "PHPCS" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHPCS | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
tools: cs2pr, phpcs | |
- name: Run PHPCS | |
run: phpcs -q --report=checkstyle lib tests/test.bootstrap.inc.php --standard=PSR12 | cs2pr | |
phpstan: | |
runs-on: ubuntu-latest | |
continue-on-error: false | |
name: "PHPStan" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHPStan | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.1' | |
tools: phpstan | |
- name: Install dependencies | |
run: composer update | |
- name: Run PHPStan | |
run: phpstan analyze lib -l8 --configuration tests/phpstan.neon.dist |