-
Notifications
You must be signed in to change notification settings - Fork 3
75 lines (61 loc) · 1.92 KB
/
build.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
name: build
on:
push:
pull_request:
schedule:
- cron: '0 10 * * 1'
jobs:
run:
runs-on: 'ubuntu-20.04'
strategy:
matrix:
php-versions: ['8.1', '8.2', '8.3']
fail-fast: false
services:
postgres:
image: postgres:15
env:
POSTGRES_PASSWORD: postgres
ports:
- 5432:5432
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 3
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
coverage: none
tools: composer:v2
- name: Get composer cache directory
id: composer-cache
run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- name: Install dependencies
run: composer install --no-interaction --prefer-dist --no-progress
- name: Run phpcs
run: composer phpcs
- name: Run phpstan
run: composer phpstan
- name: Run tests
#run: composer tests # manually with `-j 1` and retry is used because of random async connection errors
uses: nick-invision/retry@v2
with:
timeout_seconds: 120
retry_wait_seconds: 5
max_attempts: 15
retry_on: error
command: tests/run-tests tests -j 1
- if: failure()
uses: actions/upload-artifact@v4
with:
name: output
path: tests/**/output
- name: Run benchmarks
run: composer benchmarks