PHP Classes

File: vendor/bramus/router/.github/workflows/CI.yml

Recommend this page to a friend!
  Classes of Rodrigo Faustino   PHP AJAX Login with JWT and Fetch API   vendor/bramus/router/.github/workflows/CI.yml   Download  
File: vendor/bramus/router/.github/workflows/CI.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP AJAX Login with JWT and Fetch API
Login users using AJAX to send JWT to a server API
Author: By
Last change:
Date: 1 year ago
Size: 817 bytes
 

Contents

Class file image Download
name: CI on: push: pull_request: jobs: tests: name: Tests on PHP ${{ matrix.php }} ${{ matrix.dependencies }} runs-on: ubuntu-20.04 container: image: shivammathur/node:2004 strategy: matrix: php: ['5.6', '7.0', '7.1', '7.2', '7.3', '7.4'] dependencies: ['', '--prefer-lowest --prefer-stable'] steps: - name: Checkout uses: actions/[email protected] - uses: shivammathur/[email protected] with: php-version: ${{ matrix.php }} - name: Install dependencies run: composer update --no-interaction --prefer-dist ${{ matrix.dependencies }} - name: Configure PHPUnit problem matchers run: echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json" - name: Run tests run: ./vendor/bin/phpunit