[Improvement]: Add search client adapter #48
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
name: "Codeception Tests" | |
on: | |
# Enable Later. | |
#schedule: | |
# - cron: '0 3 * * 1,3,5' | |
pull_request: | |
branches: | |
- "[0-9]+.[0-9]+" | |
- "[0-9]+.x" | |
- "feature-*" | |
push: | |
branches: | |
- "[0-9]+.[0-9]+" | |
- "[0-9]+.x" | |
env: | |
PIMCORE_PROJECT_ROOT: ${{ github.workspace }} | |
APP_ENV: test | |
PIMCORE_TEST: 1 | |
SYMFONY_DEPRECATIONS_HELPER: weak # TODO remove when remove support for Pimcore 10 | |
jobs: | |
codeception-tests: | |
name: "Codeception tests" | |
runs-on: "ubuntu-20.04" | |
continue-on-error: ${{ matrix.experimental }} | |
strategy: | |
matrix: | |
include: | |
- { php-version: 8.0, dependencies: lowest, pimcore_version: "", experimental: false } | |
- { php-version: 8.1, dependencies: lowest, pimcore_version: "", experimental: false } | |
- { php-version: 8.2, dependencies: highest, pimcore_version: "", experimental: false } | |
steps: | |
- name: "Checkout code" | |
uses: "actions/checkout@v2" | |
- name: "Install PHP" | |
uses: "shivammathur/setup-php@v2" | |
with: | |
coverage: xdebug | |
ini-values: display_errors=On, display_startup_errors=On, error_reporting=32767 | |
php-version: "${{ matrix.php-version }}" | |
- name: "Install dependencies with Composer" | |
uses: "ramsey/composer-install@v2" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
- name: "Run Codeception" | |
run: "vendor/bin/codecept run -c . -vvv --xml --coverage-xml" |