PHP Classes

File: .github/workflows/ci.yml

Recommend this page to a friend!
  Packages of Andraž   BB   .github/workflows/ci.yml   Download  
File: .github/workflows/ci.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: BB
Badminton tournament management application
Author: By
Last change:
Date: 15 days ago
Size: 1,657 bytes
 

Contents

Class file image Download
name: CI on: push: branches: - '4.x' - '4.next' - '5.x' pull_request: branches: - '*' workflow_dispatch: permissions: contents: read jobs: testsuite: runs-on: ubuntu-22.04 strategy: fail-fast: false matrix: php-version: ['8.1', '8.2'] dependencies: ['highest'] include: - php-version: '8.1' dependencies: 'lowest' steps: - uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php-version }} extensions: mbstring, intl, pdo_sqlite ini-values: zend.assertions=1 coverage: none - name: Composer install uses: ramsey/composer-install@v2 with: dependency-versions: ${{ matrix.dependencies }} composer-options: ${{ matrix.composer-options }} - name: Composer post install run: composer run-script post-install-cmd --no-interaction - name: Run PHPUnit run: vendor/bin/phpunit env: DATABASE_TEST_URL: sqlite://./testdb.sqlite coding-standard: name: Coding Standard & Static Analysis runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: '8.1' extensions: mbstring, intl coverage: none tools: cs2pr, phpstan:1.10 - name: Composer install uses: ramsey/composer-install@v2 - name: Run PHP CodeSniffer run: vendor/bin/phpcs --report=checkstyle | cs2pr - name: Run phpstan if: always() run: phpstan