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: refactor: migrate from Psalm + PHPUnit to PHPStan + Pest
Test against php 8.3 (#127)

chore: add PHP 8.2 to CI tests
Date: 13 days ago
Size: 740 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: [8.2, 8.3, 8.4] 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/phpstan - run: vendor/bin/pest