PHP Classes

File: .github/workflows/testing.yml

Recommend this page to a friend!
  Classes of Andrey Iatsenko   PHP Validate XML Against XSD   .github/workflows/testing.yml   Download  
File: .github/workflows/testing.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Validate XML Against XSD
Validate XML documents with XSD schema files
Author: By
Last change:
Date: 2 months ago
Size: 880 bytes
 

Contents

Class file image Download
name: Checking on: push: branches: [ main ] pull_request: branches: [ main ] jobs: build: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - name: Validate composer.json and composer.lock run: composer validate - name: Cache Composer packages id: composer-cache uses: actions/cache@v2 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-php- - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress --no-suggest - name: Run phpstan run: composer run-script phpstan - name: Check codestyle run: composer run-script phpcs - name: PHPUnit run: composer run-script phpunit