404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.128.95.29: ~ $
name: Run tests

on: [push, pull_request]

jobs:
    php-tests:
        runs-on: ${{ matrix.os }}
        strategy:
            fail-fast: false
            matrix:
                os: [ubuntu-latest, windows-latest]
                php: [8.0, 8.1, 8.2]
                stability: [prefer-lowest, prefer-stable]

        name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }}

        steps:
            -   name: Checkout code
                uses: actions/checkout@v3

            -   name: Setup PHP
                uses: shivammathur/setup-php@v2
                with:
                    php-version: ${{ matrix.php }}
                    extensions: mbstring
                    coverage: none

            -   name: Setup problem matchers
                run: |
                    echo "::add-matcher::${{ runner.tool_cache }}/php.json"
                    echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"

            -   name: Install dependencies
                run: composer update --${{ matrix.stability }} --prefer-dist --no-interaction

            -   name: Execute tests
                run: vendor/bin/pest

Filemanager

Name Type Size Permission Actions
build.yml File 1.07 KB 0644
dependabot-auto-merge.yml File 1.06 KB 0644
php-cs-fixer.yml File 925 B 0644
phpstan.yml File 597 B 0644
run-tests.yml File 1.16 KB 0644
update-changelog.yml File 673 B 0644