-
Notifications
You must be signed in to change notification settings - Fork 20
46 lines (38 loc) · 1.01 KB
/
phpbench.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
name: Run PhpBench
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
phpbench:
runs-on: ubuntu-22.04
strategy:
matrix:
php-version: ['8.1', '8.3']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
ini-values: |
memory_limit=512M
coverage: none
- name: Get Composer Cache
id: composer-cache
uses: actions/cache@v4
with:
path: ~/.composer/cache
key:
${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}-${{
matrix.php-version }}
restore-keys: ${{ runner.os }}-composer-${{ matrix.php-version }}
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-suggest
- name: Run PhpBench
run: vendor/bin/phpbench run