PHP Classes

File: .github/workflows/tests.yml

Recommend this page to a friend!
  Packages of Kacper Rowinski   OneClickCaptcha   .github/workflows/tests.yml   Download  
File: .github/workflows/tests.yml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: OneClickCaptcha
CAPTCHA validation based on user clicks on circles
Author: By
Last change: Update of .github/workflows/tests.yml
Date: 2 days ago
Size: 1,063 bytes
 

Contents

Class file image Download
name: PHP Tests on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: matrix: php: [ '8.4' ] steps: - name: Checkout uses: actions/checkout@v2 - name: Setup PHP, with composer and extensions uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: xdebug - name: Validate composer.json and composer.lock run: composer validate - name: Cache Composer packages id: composer-cache uses: actions/cache@v4 with: path: vendor key: ${{ runner.os }}-${{ matrix.php }}-${{ hashFiles('**/composer.lock') }} restore-keys: | ${{ runner.os }}-${{ matrix.php }}- - name: Install dependencies if: steps.composer-cache.outputs.cache-hit != 'true' run: composer install --prefer-dist --no-progress --no-suggest - name: Run sa check run: composer sa - name: Run tests run: vendor/bin/phpunit --coverage-text