Skip to content

Commit

Permalink
Fix github actions ci active-record.yml.
Browse files Browse the repository at this point in the history
  • Loading branch information
terabytesoftw committed Dec 15, 2022
1 parent cf18807 commit d2c9b6b
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/active-record.yml
Expand Up @@ -94,6 +94,21 @@ jobs:
- name: Update composer
run: composer self-update

- name: Install db-mssql
run: composer require yiisoft/db-mssql:${{ env.COMPOSER_ROOT_VERSION }} --no-interaction --no-progress --optimize-autoloader --ansi

- name: Install db-mysql
run: composer require yiisoft/db-mysql:${{ env.COMPOSER_ROOT_VERSION }} --no-interaction --no-progress --optimize-autoloader --ansi

- name: Install db-pgsql
run: composer require yiisoft/db-pgsql:${{ env.COMPOSER_ROOT_VERSION }} --no-interaction --no-progress --optimize-autoloader --ansi

- name: Install db-oracle
run: composer require yiisoft/db-oracle:${{ env.COMPOSER_ROOT_VERSION }} --no-interaction --no-progress --optimize-autoloader --ansi

- name: Install db-sqlite
run: composer require yiisoft/db-sqlite:${{ env.COMPOSER_ROOT_VERSION }} --no-interaction --no-progress --optimize-autoloader --ansi

- name: Install active-record
run: composer require yiisoft/active-record:${{ env.COMPOSER_ROOT_VERSION }} --no-interaction --no-progress --optimize-autoloader --ansi

Expand Down

0 comments on commit d2c9b6b

Please sign in to comment.