Skip to content

Fix #1142: upsert to use first matching unique constraint #4299

Fix #1142: upsert to use first matching unique constraint

Fix #1142: upsert to use first matching unique constraint #4299

Workflow file for this run

on:
pull_request:
paths:
- 'src/**'
- '.github/workflows/active-record.yml'
- 'composer.json'
push:
branches: ['master']
paths:
- 'src/**'
- '.github/workflows/active-record.yml'
- 'composer.json'
name: active-record
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
tests:
name: ActiveRecord
env:
COMPOSER_ROOT_VERSION: 2.0.0
PHP_VERSION: 8.5
EXTENSIONS: pdo, pdo_mysql, pdo_oci, pdo_pgsql, pdo_sqlite, pdo_sqlsrv
runs-on: ubuntu-latest
services:
mysql:
image: mysql:latest
env:
MYSQL_ALLOW_EMPTY_PASSWORD: true
MYSQL_DATABASE: ar-test
MYSQL_USER: yii
MYSQL_PASSWORD: q1w2e3r4
ports:
- 3306:3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
oci:
image: gvenzl/oracle-xe:latest
ports:
- 1521:1521
env:
ORACLE_RANDOM_PASSWORD: yes
ORACLE_DATABASE: ar_test
APP_USER: yii
APP_USER_PASSWORD: q1w2e3r4
options: >-
--name=oci
--health-cmd healthcheck.sh
--health-interval 10s
--health-timeout 5s
--health-retries 10
postgres:
image: postgres:18
env:
POSTGRES_DB: ar-test
POSTGRES_USER: yii
POSTGRES_PASSWORD: q1w2e3r4
ports:
- 5432:5432
options: --name=postgres --health-cmd="pg_isready" --health-interval=10s --health-timeout=5s --health-retries=3
mssql:
image: mcr.microsoft.com/mssql/server:2022-latest
env:
SA_PASSWORD: YourStrong!Passw0rd
ACCEPT_EULA: Y
MSSQL_PID: Developer
ports:
- 1433:1433
options: --name=mssql --health-cmd="/opt/mssql-tools18/bin/sqlcmd -C -S localhost -U SA -P 'YourStrong!Passw0rd' -Q 'SELECT 1'" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- name: Install ODBC driver.
run: |
sudo curl https://packages.microsoft.com/config/ubuntu/$(lsb_release -rs)/prod.list | sudo tee /etc/apt/sources.list.d/mssql-release.list
sudo ACCEPT_EULA=Y apt-get install -y msodbcsql18
- name: Create MS SQL Database.
run: docker exec -i mssql /opt/mssql-tools18/bin/sqlcmd -C -S localhost -U SA -P 'YourStrong!Passw0rd' -Q 'CREATE DATABASE [ar-test]'
- name: Checkout.
uses: actions/checkout@v4
- name: Install PHP with extensions.
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
extensions: ${{ env.EXTENSIONS }}
ini-values: date.timezone='UTC'
coverage: pcov
- name: Install AR dependencies
run: composer require yiisoft/cache yiisoft/factory yiisoft/middleware-dispatcher yiisoft/test-support
- name: Install db-sqlite, db-mysql, db-pgsql, db-mssql and db-oracle.
uses: yiisoft/actions/install-packages@master
with:
composer-root-version: 2.0.0
packages: >-
['db-sqlite', 'db-mysql', 'db-pgsql', 'db-mssql', 'db-oracle']
- name: Install active-record.
uses: yiisoft/actions/install-packages@master
with:
composer-root-version: 1.0.0
packages: >-
['active-record']
- name: Run tests with phpunit with code coverage.
run: vendor/bin/phpunit --testsuite ActiveRecord --coverage-clover=coverage.xml --colors=always --display-warnings --display-deprecations
- name: Upload coverage to Codecov.
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage.xml