Skip to content

try improving array lookup speed #45

try improving array lookup speed

try improving array lookup speed #45

Workflow file for this run

name: Unittest
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
permissions:
contents: read
jobs:
unittest:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Cache Composer packages
id: composer-cache
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-php-
- name: Install dependencies
run: composer install --prefer-dist --no-progress --ignore-platform-req php
- name: PHPUnit (php-actions)
uses: php-actions/phpunit@v4
with:
php_extensions: pcov
php_version: 8.4
configuration: phpunit.xml
coverage_text: true