-
Notifications
You must be signed in to change notification settings - Fork 6
113 lines (111 loc) · 3.31 KB
/
ci.yml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
name: CI
on:
push:
schedule:
- cron: '0 0 * * *'
jobs:
docker-compose:
name: docker-compose (production container)
runs-on: ubuntu-22.04
steps:
- name: checkout
uses: actions/checkout@v3
- name: docker build / start
run: docker-compose -f docker-compose.ci.yml up -d
- name: wait for nginx
run: while ! nc -z localhost 443; do sleep 0.1; done
- name: ping
run: curl --insecure https://localhost/ping -vvv
- name: openapi
run: curl --insecure https://localhost/openapi -vvv
- name: docker stop
run: docker-compose -f docker-compose.ci.yml stop
php81:
name: PHP 8.1
runs-on: ubuntu-22.04
services:
postgres:
image: postgres:14
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: KVKtkrTHhKuTJTor8pCP
ports:
- 5432:5432
steps:
- name: checkout
uses: actions/checkout@v3
- name: wait for databases
run: |
while ! nc -z localhost 5432; do sleep 0.1; done
- name: composer test
uses: docker://chubbyphp/ci-php81:latest
env:
APP_ENV: phpunit
DATABASE_USER: root
DATABASE_PASS: KVKtkrTHhKuTJTor8pCP
DATABASE_HOST: 172.17.0.1
DATABASE_NAME: petstore
DATABASE_PORT: 5432
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
php82:
name: PHP 8.2
runs-on: ubuntu-22.04
services:
postgres:
image: postgres:14
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: KVKtkrTHhKuTJTor8pCP
ports:
- 5432:5432
steps:
- name: checkout
uses: actions/checkout@v3
- name: wait for databases
run: |
while ! nc -z localhost 5432; do sleep 0.1; done
- name: composer test
uses: docker://chubbyphp/ci-php82:latest
env:
APP_ENV: phpunit
DATABASE_USER: root
DATABASE_PASS: KVKtkrTHhKuTJTor8pCP
DATABASE_HOST: 172.17.0.1
DATABASE_NAME: petstore
DATABASE_PORT: 5432
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
php83:
name: PHP 8.3
runs-on: ubuntu-22.04
services:
postgres:
image: postgres:14
env:
POSTGRES_USER: root
POSTGRES_PASSWORD: KVKtkrTHhKuTJTor8pCP
ports:
- 5432:5432
steps:
- name: checkout
uses: actions/checkout@v3
- name: wait for databases
run: |
while ! nc -z localhost 5432; do sleep 0.1; done
- name: composer test
uses: docker://chubbyphp/ci-php83:latest
env:
APP_ENV: phpunit
DATABASE_USER: root
DATABASE_PASS: KVKtkrTHhKuTJTor8pCP
DATABASE_HOST: 172.17.0.1
DATABASE_NAME: petstore
DATABASE_PORT: 5432
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STRYKER_DASHBOARD_API_KEY: ${{ secrets.STRYKER_DASHBOARD_API_KEY }}
- name: sonarcloud.io
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}