-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
71 lines (66 loc) · 2.18 KB
/
Copy pathci-pgsql.yml
File metadata and controls
71 lines (66 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
name: ci-pgsql
permissions:
contents: read
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: PostgreSQL tests with coverage
uses: yiisoft/yii2-actions/.github/workflows/database.yml@f14284136c895c1af50b8ed5c80d83afa31461e7 # master
with:
concurrency-group: pgsql-${{ github.ref }}
coverage-driver: xdebug
database-env: '{"POSTGRES_USER":"postgres","POSTGRES_PASSWORD":"postgres","POSTGRES_DB":"yiitest"}'
database-health-cmd: pg_isready
database-image: postgres
database-port: "5432"
database-type: pgsql
database-versions: '["10","11","12","13","14","15","16","17","latest"]'
extensions: curl, intl, pdo, pdo_pgsql
os: '["ubuntu-22.04"]'
php-version: '["7.4","8.5"]'
phpunit-group: pgsql
secrets:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
tests-dev:
name: PostgreSQL tests
uses: yiisoft/yii2-actions/.github/workflows/database.yml@f14284136c895c1af50b8ed5c80d83afa31461e7 # master
with:
concurrency-group: pgsql-dev-${{ github.ref }}
coverage-driver: none
database-env: '{"POSTGRES_USER":"postgres","POSTGRES_PASSWORD":"postgres","POSTGRES_DB":"yiitest"}'
database-health-cmd: pg_isready
database-image: postgres
database-port: "5432"
database-type: pgsql
database-versions: '["latest"]'
extensions: curl, intl, pdo, pdo_pgsql
os: '["ubuntu-22.04"]'
php-version: '["8.0","8.1","8.2","8.3","8.4"]'
phpunit-group: pgsql