PHP Classes

File: .github/workflows/ci.yml

Recommend this page to a friend!
  Classes of Matthias Sommerfeld   IDNA Convert   ???   Download  
File: .github/workflows/???
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: IDNA Convert
Convert from and to IDNA Punycode domain names
Author: By
Last change:
Date: 1 month ago
Size: 807 bytes
 

Contents

Class file image Download
name: CI on: push: branches: [master] pull_request: branches: [master] jobs: test: runs-on: ubuntu-latest strategy: fail-fast: false matrix: php-version: [8.1, 8.2, 8.3, 8.4, nightly] include: - php-version: nightly allow-failure: true steps: - uses: actions/checkout@v3 - name: Set up PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} tools: composer - name: Install dependencies (before_install) run: composer install - name: Run tests run: vendor/bin/phpunit continue-on-error: ${{ matrix.allow-failure == true }}