__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
name: "Tests"
on:
- pull_request
- push
jobs:
test:
name: PHP ${{ matrix.php }} - ${{ matrix.dependencies }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php:
- "7.2"
- "7.3"
- "7.4"
- "8.0"
- "8.1"
dependencies:
- "psr/container:^1.1"
- "psr/container:^2.0"
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup PHP ${{ matrix.php }}
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
ini-values: display_errors=off, log_errors=on
extensions: :xdebug
env:
# https://github.com/shivammathur/setup-php/issues/407#issuecomment-773675741
fail-fast: true
- name: Validate composer.json
run: composer validate --strict --no-check-lock
- name: Install dependencies +${{ matrix.dependencies }}
run: |
composer require --no-update ${{ matrix.dependencies }}
composer update --prefer-dist --no-progress
- name: Run PHPUnit tests
run: vendor/bin/simple-phpunit --verbose
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| tests.yml | File | 1.16 KB | 0664 |
|