mirror of
https://github.com/yiisoft/yii2.git
synced 2026-02-20 00:32:19 +01:00
73 lines
2.0 KiB
YAML
73 lines
2.0 KiB
YAML
name: ci-mysql
|
|
|
|
permissions:
|
|
contents: read
|
|
pull-requests: write
|
|
|
|
on:
|
|
pull_request: &ignore-paths
|
|
paths-ignore:
|
|
- ".appveyor.yml"
|
|
- ".dockerignore"
|
|
- ".editorconfig"
|
|
- ".git-blame-ignore-revs"
|
|
- ".gitattributes"
|
|
- ".github/CONTRIBUTING.md"
|
|
- ".github/FUNDING.yml"
|
|
- ".github/ISSUE_TEMPLATE.md"
|
|
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
- ".github/SECURITY.md"
|
|
- ".gitignore"
|
|
- ".gitlab-ci.yml"
|
|
- "code-of-conduct.md"
|
|
- "docs/**"
|
|
- "framework/.gitignore"
|
|
- "framework/.phpstorm.meta.php"
|
|
- "framework/CHANGELOG.md"
|
|
- "framework/LICENSE.md"
|
|
- "framework/README.md"
|
|
- "framework/UPGRADE.md"
|
|
- "eslint.config.js"
|
|
- "LICENSE.md"
|
|
- "README.md"
|
|
- "ROADMAP.md"
|
|
|
|
push: *ignore-paths
|
|
|
|
jobs:
|
|
tests:
|
|
name: MySQL tests with coverage
|
|
uses: yiisoft/yii2-actions/.github/workflows/database.yml@master
|
|
with:
|
|
concurrency-group: mysql-${{ github.ref }}
|
|
coverage-driver: xdebug
|
|
database-env: '{"MYSQL_ROOT_PASSWORD":"root","MYSQL_DATABASE":"yiitest"}'
|
|
database-health-cmd: mysqladmin ping
|
|
database-image: mysql
|
|
database-port: "3306"
|
|
database-type: mysql
|
|
database-versions: '["5.7","latest"]'
|
|
extensions: curl, intl, pdo, pdo_mysql
|
|
os: '["ubuntu-latest"]'
|
|
php-version: '["7.4","8.5"]'
|
|
phpunit-group: mysql
|
|
secrets:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
|
|
tests-dev:
|
|
name: MySQL tests
|
|
uses: yiisoft/yii2-actions/.github/workflows/database.yml@master
|
|
with:
|
|
concurrency-group: mysql-dev-${{ github.ref }}
|
|
coverage-driver: none
|
|
database-env: '{"MYSQL_ROOT_PASSWORD":"root","MYSQL_DATABASE":"yiitest"}'
|
|
database-health-cmd: mysqladmin ping
|
|
database-image: mysql
|
|
database-port: "3306"
|
|
database-type: mysql
|
|
database-versions: '["latest"]'
|
|
extensions: curl, intl, pdo, pdo_mysql
|
|
os: '["ubuntu-latest"]'
|
|
php-version: '["8.0","8.1","8.2","8.3","8.4"]'
|
|
phpunit-group: mysql
|