PHP Classes

File: .github/workflows/tests.yml

Recommend this page to a friend!
  Classes of Alexander Kiryukhin   PHP Math Expression Evaluator   .github/workflows/tests.yml   Download  
File: .github/workflows/tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Math Expression Evaluator
Parse and evaluate strings with math expressions
Author: By
Last change: Upgrading actions to v4 for checkout (#135)
Date: 1 month ago
Size: 946 bytes
 

Contents

Class file image Download
name: Tests on: [push, pull_request] jobs: php-tests: runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: php: [8.3, 8.2, 8.1, 8.0] dependency-version: [prefer-lowest, prefer-stable] os: [ubuntu-latest, windows-latest] name: ${{ matrix.os }} - PHP${{ matrix.php }} - ${{ matrix.dependency-version }} steps: - name: Checkout code uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: dom, curl, libxml, mbstring, zip, bcmath, intl ini-values: precision=16 coverage: none - name: Install dependencies run: | composer install --no-interaction composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest - name: Execute tests run: vendor/bin/phpunit