PHP Classes

File: .github/workflows/ci.yml

Recommend this page to a friend!
  Classes of Junior Grossi   Corcel (Laravel + WordPress)   .github/workflows/ci.yml   Download  
File: .github/workflows/ci.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Corcel (Laravel + WordPress)
Use the WordPress backend with any PHP application
Author: By
Last change: add php83 and 84
fix and update test
fix ci
Date: 13 days ago
Size: 791 bytes
 

Contents

Class file image Download
name: CI on: [push] jobs: build-tests: runs-on: ubuntu-latest steps: - uses: actions/checkout@v1 - name: Setup php82 uses: shivammathur/setup-php@v2 with: php-version: '8.2' - name: Running tests php82 run: | composer install --prefer-dist --quiet php vendor/bin/phpunit - name: Setup php82 uses: shivammathur/setup-php@v2 with: php-version: '8.3' - name: Running tests php83 run: | composer install --prefer-dist --quiet php vendor/bin/phpunit - name: Setup php84 uses: shivammathur/setup-php@v2 with: php-version: '8.4' - name: Running tests php84 run: | composer install --prefer-dist --quiet php vendor/bin/phpunit