404

[ Avaa Bypassed ]




Upload:

Command:

elspacio@3.142.174.58: ~ $
name: tests

on:
  push:
    branches:
      - master
      - '*.x'
  pull_request:
  schedule:
    - cron: '0 0 * * *'

jobs:
  linux_tests:
    runs-on: ubuntu-20.04

    strategy:
      fail-fast: true
      matrix:
        php: [7.3, 7.4, '8.0', 8.1, 8.2]

    name: PHP ${{ matrix.php }}

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

      - name: Setup PHP
        uses: shivammathur/setup-php@v2
        with:
          php-version: ${{ matrix.php }}
          ini-values: error_reporting=E_ALL
          tools: composer:v2
          coverage: none

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

      - name: Install PHP dependencies
        run: composer update --prefer-stable --no-interaction --no-progress

      - name: Execute tests
        run: vendor/bin/pest tests/Php73Test.php
        if: matrix.php == 7.3

      - name: Execute tests
        run: vendor/bin/pest
        if: matrix.php > 7.3

Filemanager

Name Type Size Permission Actions
issues.yml File 173 B 0644
pull-requests.yml File 205 B 0644
static-analysis.yml File 870 B 0644
tests.yml File 1.11 KB 0644
update-changelog.yml File 157 B 0644