-
Notifications
You must be signed in to change notification settings - Fork 32
101 lines (80 loc) · 2.34 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
name: tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
test:
name: unit test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest']
php-version: ['7.4', '8.0', '8.1', '8.2']
phpunit-version: ['latest']
transport: ['', 'PhpHttp']
services:
manticoresearch-manticore:
image: manticoresearch/manticore:dev
env:
EXTRA: 1
ports:
- 9308:9308
manticoresearch-manticore-2:
image: manticoresearch/manticore:dev
env:
EXTRA: 1
ports:
- 5308:9308
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP {{matrix.php-version}}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
extensions: yaml, zip, curl
tools: phpunit
- name: Install dependencies
run: composer install --prefer-dist
- name: Composer require
run: composer require php-http/discovery php-http/curl-client guzzlehttp/psr7 php-http/message php-http/message-factory http-interop/http-factory-guzzle
- name: Test
run: vendor/bin/phpunit -d memory_limit=4G --stop-on-failure test/
env:
MS_HOST: 127.0.0.1
MS_PORT: 9308
MS_HOST2: 127.0.0.1
MS_PORT2: 5308
TRANSPORT: ${{ matrix.transport }}
stan:
name: static analysis
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP 7.4
uses: shivammathur/setup-php@v2
with:
php-version: 7.4
- name: Install dependencies
run: composer install --prefer-dist
- name: Composer require
run: composer require php-http/discovery php-http/curl-client guzzlehttp/psr7 php-http/message http-interop/http-factory-guzzle
- name: Run phpstan
run: composer phpstan
codestyle:
name: codestyle
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP 8.0
uses: shivammathur/setup-php@v2
with:
php-version: 8.0
- name: Install dependencies
run: composer install --prefer-dist
- name: Check code style
run: composer check-cs