Skip to content

Added missing EType constants. #18

Added missing EType constants.

Added missing EType constants. #18

Workflow file for this run

name: Build
on:
push: ~
pull_request: ~
release:
types: [created]
jobs:
tests:
runs-on: ubuntu-latest
name: "PHP ${{ matrix.php }}"
strategy:
fail-fast: false
matrix:
php: [8.1, 8.2]
steps:
-
uses: actions/checkout@v2
-
name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
extensions: soap, gd, mbstring, simplexml
coverage: none
-
name: Get Composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
-
name: Cache Composer
uses: actions/cache@v2
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json **/composer.lock') }}
restore-keys: |
${{ runner.os }}-php-${{ matrix.php }}-composer-
-
name: Install PHP dependencies
run: composer install --no-interaction
-
name: Run analysis
run: composer validate --strict
-
name: Run PHPUnit
run: vendor/bin/phpunit --colors=always