Skip to content

Add Vec versions of the unique functions #1557

Add Vec versions of the unique functions

Add Vec versions of the unique functions #1557

Workflow file for this run

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