Skip to content

Allow to parse TimeZoneOffset with ±[hh] only #98

Allow to parse TimeZoneOffset with ±[hh] only

Allow to parse TimeZoneOffset with ±[hh] only #98

Workflow file for this run

name: CI
on:
push:
pull_request:
env:
COVERAGE_PHP_VERSION: "8.4"
jobs:
phpunit:
name: PHPUnit
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php-version:
- "8.1"
- "8.2"
- "8.3"
- "8.4"
deps:
- "highest"
include:
- php-version: "8.1"
deps: "lowest"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: xdebug
- name: Install composer dependencies
uses: ramsey/composer-install@v3
with:
dependency-versions: ${{ matrix.deps }}
- name: Run PHPUnit
run: vendor/bin/phpunit
if: ${{ matrix.php-version != env.COVERAGE_PHP_VERSION }}
- name: Run PHPUnit with coverage
run: |
mkdir -p mkdir -p build/logs
vendor/bin/phpunit --coverage-clover build/logs/clover.xml
if: ${{ matrix.php-version == env.COVERAGE_PHP_VERSION }}
- name: Upload coverage report to Coveralls
run: vendor/bin/php-coveralls --coverage_clover=build/logs/clover.xml -v
env:
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
if: ${{ matrix.php-version == env.COVERAGE_PHP_VERSION }}
psalm:
name: Psalm
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "8.3"
- name: Install composer dependencies (date-time)
uses: ramsey/composer-install@v3
- name: Install composer dependencies (psalm)
uses: ramsey/composer-install@v3
with:
working-directory: "tools/psalm"
- name: Run Psalm
run: tools/psalm/vendor/bin/psalm --show-info=false --no-progress --config=tools/psalm/psalm.xml
coding-standard:
name: Coding Standard
uses: brick/coding-standard/.github/workflows/coding-standard.yml@v2
with:
working-directory: "tools/ecs"