PHP Classes

File: .github/workflows/test.yml

Recommend this page to a friend!
  Classes of AccountKiller   Fuse   .github/workflows/test.yml   Download  
File: .github/workflows/test.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Fuse
Fuzzy search of arrays using the Bitap algorithm
Author: By
Last change: test: add PHP 8.1 to test matrix
feat: port Fuse.js 6 (#34)

Date: 1 year ago
Size: 747 bytes
 

Contents

Class file image Download
name: Test CI on: push: branches: - master pull_request: paths-ignore: - '*.md' jobs: build: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest] php-version: ['7.4', '8.0', '8.1'] steps: - uses: actions/checkout@v2 with: persist-credentials: false - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} tools: composer - run: composer install - run: vendor/bin/phpcs - run: vendor/bin/psalm - run: vendor/bin/phpunit