-
Notifications
You must be signed in to change notification settings - Fork 8
99 lines (80 loc) · 2.23 KB
/
ci.yml
File metadata and controls
99 lines (80 loc) · 2.23 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
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
name: Package CI
on:
push:
branches:
- master
- v2.0
pull_request:
jobs:
tests:
name: PHP ${{ matrix.php }} - ${{ matrix.version }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: [ '8.2', '8.5' ]
version: [ lowest, standard ]
elastic: [ '9.2.2' ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: json, curl
coverage: none
- name: Configure sysctl limits
run: |
sudo swapoff -a
sudo sysctl -w vm.swappiness=1
sudo sysctl -w fs.file-max=262144
sudo sysctl -w vm.max_map_count=262144
- name: Start Elasticsearch
uses: elastic/elastic-github-actions/elasticsearch@master
with:
stack-version: ${{ matrix.elastic }}
security-enabled: false
elasticsearch_options: action.destructive_requires_name=false
- name: Install dependencies (lowest)
if: matrix.version == 'lowest'
run: make composer-lowest
- name: Install dependencies (standard)
if: matrix.version == 'standard'
run: make composer
- name: Run tests
run: make tests
code-quality:
name: Code Quality
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
extensions: json, curl
coverage: none
- name: Install dependencies
run: make composer
- name: Check coding standards
run: make cs
- name: Run PHPStan
run: make phpstan
phpstan-lowest:
name: PHPStan (lowest deps)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.5'
extensions: json, curl
coverage: none
- name: Install dependencies
run: make composer-lowest
- name: Run PHPStan
run: make phpstan-lowest