Allow optional jQuery in Validators and Widgets. #5269
Workflow file for this run
This file contains hidden or 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
on: | |
- pull_request | |
- push | |
name: ci-oracle | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: PHP ${{ matrix.php }}-oracle-11g-r2 | |
env: | |
DEFAULT_COMPOSER_FLAGS: --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi | |
EXTENSIONS: oci8, pdo, pdo_oci | |
PHPUNIT_COMMAND: --group oci --colors=always --coverage-clover=coverage.xml | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: [8.1] | |
services: | |
oci: | |
image: wnameless/oracle-xe-11g-r2:latest | |
ports: | |
- 1521:1521 | |
options: --name=oci | |
steps: | |
- name: Checkout. | |
uses: actions/checkout@v5 | |
- name: Install PHP with extensions. | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: pcov | |
extensions: ${{ env.EXTENSIONS }} | |
ini-values: date.timezone='UTC' | |
php-version: ${{ matrix.php }} | |
tools: pie | |
- name: Install dependencies with composer. | |
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi | |
- name: Run Oracle tests with PHPUnit. | |
run: vendor/bin/phpunit ${{ env.PHPUNIT_COMMAND }} | |
- name: Upload coverage to Codecov. | |
uses: codecov/codecov-action@v5 | |
with: | |
file: ./coverage.xml | |
token: ${{ secrets.CODECOV_TOKEN }} |