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 php81 to actions
Merge pull request #558 from pawawat/fix-missing-retrieved-event-in-post-model

fix missing retrieved event in Post model
Date: 1 year ago
Size: 569 bytes
 

Contents

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