PHP Classes

File: .github/workflows/run-tests.yml

Recommend this page to a friend!
  Classes of Andre Polykanine A.K.A. Menelion Elensúlë   Oire Base64   .github/workflows/run-tests.yml   Download  
File: .github/workflows/run-tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Oire Base64
URL safe encoding and decoding of data with Base64
Author: By
Last change:
Date: 27 days ago
Size: 737 bytes
 

Contents

Class file image Download
name: Run Tests on: [push, pull_request] jobs: test: runs-on: ${{ matrix.os }} strategy: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] php: [8.0, 7.4, 7.3] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} extensions: mbstring, pdo, sqlite, pdo_sqlite coverage: none - name: Install dependencies run: composer install - name: Execute tests run: vendor/bin/phpunit