Path : /var/www/clients/client0/web25/web/vendor/kalnoy/nestedset/.github/workflows/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/vendor/kalnoy/nestedset/.github/workflows/run-tests.yml |
name: Unit Tests on: push: branches: - master pull_request: branches: - "*" schedule: - cron: '0 0 * * *' jobs: php-tests: runs-on: ubuntu-latest timeout-minutes: 15 env: COMPOSER_NO_INTERACTION: 1 strategy: fail-fast: false matrix: php: [8.1, 8.0, 7.4, 7.3, 7.2] name: P${{ matrix.php }} steps: - name: Checkout code uses: actions/checkout@v2 - name: Setup PHP uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: none tools: composer:v2 - name: Install dependencies run: | composer install -o --quiet - name: Execute Unit Tests run: composer test