Docs: Ukrainian — Add Sessions&Cookies page #4469
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
on: | |
- pull_request | |
- push | |
name: ci-oracle | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
tests: | |
name: PHP ${{ matrix.php }}-${{ matrix.os }} | |
env: | |
extensions: oci8, pdo, pdo_oci | |
XDEBUG_MODE: coverage, develop | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
php: [7.4] | |
services: | |
oci: | |
image: wnameless/oracle-xe-11g-r2:latest | |
ports: | |
- 1521:1521 | |
options: --name=oci | |
steps: | |
- name: Checkout. | |
uses: actions/checkout@v4 | |
- name: Install PHP with extensions. | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: xdebug | |
extensions: ${{ env.EXTENSIONS }} | |
ini-values: date.timezone='UTC' | |
php-version: ${{ matrix.php }} | |
tools: composer:v2, pecl | |
- name: Update composer. | |
run: composer self-update | |
- name: Install dependencies with composer. | |
run: composer update --prefer-dist --no-interaction --no-progress --optimize-autoloader --ansi | |
- name: Run Oracle tests with PHPUnit and generate coverage. | |
run: vendor/bin/phpunit --group oci --coverage-clover=coverage.xml --colors=always | |
- name: Upload coverage to Codecov. | |
if: matrix.php == '7.4' | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.xml |