-
-
Notifications
You must be signed in to change notification settings - Fork 71
46 lines (37 loc) · 1015 Bytes
/
benchmarks.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: "benchmarks"
on:
pull_request: ~
push: ~
jobs:
unit-tests:
name: "benchmarks"
runs-on: ${{ matrix.operating-system }}
strategy:
matrix:
php-version:
- "8.3"
operating-system:
- "ubuntu-latest"
steps:
- name: "checkout"
uses: "actions/checkout@v4"
- name: "installing PHP"
uses: "shivammathur/setup-php@v2"
with:
php-version: "${{ matrix.php-version }}"
ini-values: memory_limit=-1
tools: composer:v2, cs2pr
extensions: bcmath, mbstring, intl, sodium, json
- name: "caching dependencies"
uses: "actions/cache@v4"
with:
path: |
~/.composer/cache
vendor
key: "php-${{ matrix.php-version }}"
restore-keys: "php-${{ matrix.php-version }}"
- name: "installing dependencies"
run: |
make install -j10 -O
- name: "running benchmarks"
run: make benchmarks